Class: Google::Apis::ServicenetworkingV1beta::Usage
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1beta::Usage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicenetworking_v1beta/classes.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb more...
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::ServicenetworkingV1beta::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.
Constructor Details
#initialize(**args) ⇒ Usage
Returns a new instance of Usage.
4363 4364 4365 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 4363 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
4344 4345 4346 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 4344 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 /; for example 'serviceusage.
googleapis.com/billing-enabled'. For Google APIs, a Terms of Service
requirement must be included here. Google Cloud APIs must include "
serviceusage.googleapis.com/tos/cloud". Other Google APIs should include "
serviceusage.googleapis.com/tos/universal". Additional ToS can be included
based on the business needs.
Corresponds to the JSON property requirements
4355 4356 4357 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 4355 def requirements @requirements end |
#rules ⇒ Array<Google::Apis::ServicenetworkingV1beta::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
4361 4362 4363 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 4361 def rules @rules end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4368 4369 4370 4371 4372 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 4368 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 |