class Google::Apis::ServicemanagementV1::GenerateConfigReportResponse

Response message for GenerateConfigReport method.

Attributes

change_reports[RW]

list of ChangeReport, each corresponding to comparison between two service configurations. Corresponds to the JSON property `changeReports` @return [Array<Google::Apis::ServicemanagementV1::ChangeReport>]

diagnostics[RW]

Errors / Linter warnings associated with the service definition this report belongs to. Corresponds to the JSON property `diagnostics` @return [Array<Google::Apis::ServicemanagementV1::Diagnostic>]

id[RW]

ID of the service configuration this report belongs to. Corresponds to the JSON property `id` @return [String]

service_name[RW]

Name of the service this report belongs to. Corresponds to the JSON property `serviceName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/servicemanagement_v1/classes.rb, line 1492
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/servicemanagement_v1/classes.rb, line 1497
def update!(**args)
  @change_reports = args[:change_reports] if args.key?(:change_reports)
  @diagnostics = args[:diagnostics] if args.key?(:diagnostics)
  @id = args[:id] if args.key?(:id)
  @service_name = args[:service_name] if args.key?(:service_name)
end