Class: Google::Apis::ServiceuserV1::Usage

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/serviceuser_v1/classes.rb,
generated/google/apis/serviceuser_v1/representations.rb,
generated/google/apis/serviceuser_v1/representations.rb

Overview

Configuration controlling usage of a service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Usage

Returns a new instance of Usage



1510
1511
1512
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1510

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#producer_notification_channelString

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

Returns:

  • (String)


1495
1496
1497
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1495

def producer_notification_channel
  @producer_notification_channel
end

#requirementsArray<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'. Corresponds to the JSON property requirements

Returns:

  • (Array<String>)


1508
1509
1510
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1508

def requirements
  @requirements
end

#rulesArray<Google::Apis::ServiceuserV1::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



1501
1502
1503
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1501

def rules
  @rules
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1515
1516
1517
1518
1519
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1515

def update!(**args)
  @producer_notification_channel = args[:producer_notification_channel] if args.key?(:producer_notification_channel)
  @rules = args[:rules] if args.key?(:rules)
  @requirements = args[:requirements] if args.key?(:requirements)
end