Class: Google::Apis::ServiceusageV1beta1::Service
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServiceusageV1beta1::Service
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/serviceusage_v1beta1/classes.rb,
generated/google/apis/serviceusage_v1beta1/representations.rb,
generated/google/apis/serviceusage_v1beta1/representations.rb 
Overview
A service that is available for use by the consumer.
Instance Attribute Summary collapse
- 
  
    
      #config  ⇒ Google::Apis::ServiceusageV1beta1::ServiceConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The configuration of the service.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The resource name of the consumer and service.
 - 
  
    
      #parent  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The resource name of the consumer.
 - 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether or not the service has been enabled for use by the consumer.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Service 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Service.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Service
Returns a new instance of Service
      3405 3406 3407  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3405 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#config ⇒ Google::Apis::ServiceusageV1beta1::ServiceConfig
The configuration of the service.
Corresponds to the JSON property config
      3384 3385 3386  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3384 def config @config end  | 
  
#name ⇒ String
The resource name of the consumer and service. A valid name would be:
- projects/123/services/serviceusage.googleapis.com
Corresponds to the JSON property 
name 
      3391 3392 3393  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3391 def name @name end  | 
  
#parent ⇒ String
The resource name of the consumer. A valid name would be:
- projects/123
Corresponds to the JSON property 
parent 
      3398 3399 3400  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3398 def parent @parent end  | 
  
#state ⇒ String
Whether or not the service has been enabled for use by the consumer.
Corresponds to the JSON property state
      3403 3404 3405  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3403 def state @state end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3410 3411 3412 3413 3414 3415  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3410 def update!(**args) @config = args[:config] if args.key?(:config) @name = args[:name] if args.key?(:name) @parent = args[:parent] if args.key?(:parent) @state = args[:state] if args.key?(:state) end  |