Class: Google::Apis::ServicemanagementV1::DisableServiceRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ServicemanagementV1::DisableServiceRequest
 
- 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
Request message for DisableService method.
Instance Attribute Summary collapse
- 
  
    
      #consumer_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The identity of consumer resource which service disablement will be applied to. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DisableServiceRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DisableServiceRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DisableServiceRequest
Returns a new instance of DisableServiceRequest
| 1101 1102 1103 | # File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1101 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#consumer_id ⇒ String
The identity of consumer resource which service disablement will be applied to. The Google Service Management implementation accepts the following forms:
- "project:" Note: this is made compatible with google.api.servicecontrol.v1.Operation.consumer_id. Corresponds to the JSON property consumerId
| 1099 1100 1101 | # File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1099 def consumer_id @consumer_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1106 1107 1108 | # File 'generated/google/apis/servicemanagement_v1/classes.rb', line 1106 def update!(**args) @consumer_id = args[:consumer_id] if args.key?(:consumer_id) end |