Class: Google::Apis::ServicemanagementV1::ChangeReport
- Inherits:
-
Object
- Object
- Google::Apis::ServicemanagementV1::ChangeReport
- 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
Change report associated with a particular service configuration. It contains a list of ConfigChanges based on the comparison between two service configurations.
Instance Attribute Summary collapse
-
#config_changes ⇒ Array<Google::Apis::ServicemanagementV1::ConfigChange>
List of changes between two service configurations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ChangeReport
constructor
A new instance of ChangeReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ChangeReport
Returns a new instance of ChangeReport.
649 650 651 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 649 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config_changes ⇒ Array<Google::Apis::ServicemanagementV1::ConfigChange>
List of changes between two service configurations. The changes will be
alphabetically sorted based on the identifier of each change. A ConfigChange
identifier is a dot separated path to the configuration. Example: visibility.
rules[selector='LibraryService.CreateBook'].restriction
Corresponds to the JSON property configChanges
647 648 649 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 647 def config_changes @config_changes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
654 655 656 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 654 def update!(**args) @config_changes = args[:config_changes] if args.key?(:config_changes) end |