Class: Google::Apis::ServiceusageV1beta1::Usage
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServiceusageV1beta1::Usage
 
 
- 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
Configuration controlling usage of a service.
Instance Attribute Summary collapse
- 
  
    
      #producer_notification_channel  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The full resource name of a channel used for sending notifications to the service producer.
 - 
  
    
      #requirements  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Requirements that must be satisfied before a consumer project can use the service.
 - 
  
    
      #rules  ⇒ Array<Google::Apis::ServiceusageV1beta1::UsageRule> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of usage rules that apply to individual API methods.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Usage 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Usage.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Usage
Returns a new instance of Usage
      3883 3884 3885  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3883 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#producer_notification_channel ⇒ String
The full resource name of a channel used for sending notifications to the
service producer.
Google Service Management currently only supports
Google Cloud Pub/Sub as a notification
channel. To use Google Cloud Pub/Sub as the channel, this must be the name
of a Cloud Pub/Sub topic that uses the Cloud Pub/Sub topic name format
documented in https://cloud.google.com/pubsub/docs/overview.
Corresponds to the JSON property producerNotificationChannel
      3868 3869 3870  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3868 def producer_notification_channel @producer_notification_channel end  | 
  
#requirements ⇒ Array<String>
Requirements that must be satisfied before a consumer project can use the
service. Each requirement is of the form requirements
      3875 3876 3877  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3875 def requirements @requirements end  | 
  
#rules ⇒ Array<Google::Apis::ServiceusageV1beta1::UsageRule>
A list of usage rules that apply to individual API methods.
NOTE: All service configuration rules follow "last one wins" order.
Corresponds to the JSON property rules
      3881 3882 3883  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3881 def rules @rules end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3888 3889 3890 3891 3892  | 
    
      # File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 3888 def update!(**args) @producer_notification_channel = args[:producer_notification_channel] if args.key?(:producer_notification_channel) @requirements = args[:requirements] if args.key?(:requirements) @rules = args[:rules] if args.key?(:rules) end  |