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.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ChangeReport
Returns a new instance of ChangeReport
      671 672 673  | 
    
      # File 'generated/google/apis/servicemanagement_v1/classes.rb', line 671 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
      669 670 671  | 
    
      # File 'generated/google/apis/servicemanagement_v1/classes.rb', line 669 def config_changes @config_changes end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      676 677 678  | 
    
      # File 'generated/google/apis/servicemanagement_v1/classes.rb', line 676 def update!(**args) @config_changes = args[:config_changes] if args.key?(:config_changes) end  |