Class: Google::Apis::ServicemanagementV1::GenerateConfigReportResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/servicemanagement_v1/classes.rb,
generated/google/apis/servicemanagement_v1/representations.rb,
generated/google/apis/servicemanagement_v1/representations.rb

Overview

Response message for GenerateConfigReport method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GenerateConfigReportResponse

Returns a new instance of GenerateConfigReportResponse



1558
1559
1560
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1558

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#change_reportsArray<Google::Apis::ServicemanagementV1::ChangeReport>

list of ChangeReport, each corresponding to comparison between two service configurations. Corresponds to the JSON property changeReports



1539
1540
1541
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1539

def change_reports
  @change_reports
end

#diagnosticsArray<Google::Apis::ServicemanagementV1::Diagnostic>

Errors / Linter warnings associated with the service definition this report belongs to. Corresponds to the JSON property diagnostics



1546
1547
1548
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1546

def diagnostics
  @diagnostics
end

#idString

ID of the service configuration this report belongs to. Corresponds to the JSON property id

Returns:

  • (String)


1551
1552
1553
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1551

def id
  @id
end

#service_nameString

Name of the service this report belongs to. Corresponds to the JSON property serviceName

Returns:

  • (String)


1556
1557
1558
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1556

def service_name
  @service_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1563
1564
1565
1566
1567
1568
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1563

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