Class: Google::Apis::ServicemanagementV1::ChangeReport
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicemanagementV1::ChangeReport
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/servicemanagement_v1/classes.rb,
lib/google/apis/servicemanagement_v1/representations.rb,
lib/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.
      687 688 689  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 687 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
      685 686 687  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 685 def config_changes @config_changes end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      692 693 694  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 692 def update!(**args) @config_changes = args[:config_changes] if args.key?(:config_changes) end  |