Class: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1QuotaBucket

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

Overview

A quota bucket is a quota provisioning unit for a specific set of dimensions.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ V1Beta1QuotaBucket

Returns a new instance of V1Beta1QuotaBucket.



3752
3753
3754
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3752

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

Instance Attribute Details

#admin_overrideGoogle::Apis::ServiceconsumermanagementV1beta1::V1Beta1QuotaOverride

A quota override Corresponds to the JSON property adminOverride



3717
3718
3719
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3717

def admin_override
  @admin_override
end

#consumer_overrideGoogle::Apis::ServiceconsumermanagementV1beta1::V1Beta1QuotaOverride

A quota override Corresponds to the JSON property consumerOverride



3722
3723
3724
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3722

def consumer_override
  @consumer_override
end

#default_limitFixnum

The default limit of this quota bucket, as specified by the service configuration. Corresponds to the JSON property defaultLimit

Returns:

  • (Fixnum)


3728
3729
3730
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3728

def default_limit
  @default_limit
end

#dimensionsHash<String,String>

The dimensions of this quota bucket. If this map is empty, this is the global bucket, which is the default quota value applied to all requests that do not have a more specific override. If this map is nonempty, the default limit, effective limit, and quota overrides apply only to requests that have the dimensions given in the map. For example, if the map has key "region" and value "us-east-1", then the specified effective limit is only effective in that region, and the specified overrides apply only in that region. Corresponds to the JSON property dimensions

Returns:

  • (Hash<String,String>)


3739
3740
3741
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3739

def dimensions
  @dimensions
end

#effective_limitFixnum

The effective limit of this quota bucket. Equal to default_limit if there are no overrides. Corresponds to the JSON property effectiveLimit

Returns:

  • (Fixnum)


3745
3746
3747
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3745

def effective_limit
  @effective_limit
end

#producer_overrideGoogle::Apis::ServiceconsumermanagementV1beta1::V1Beta1QuotaOverride

A quota override Corresponds to the JSON property producerOverride



3750
3751
3752
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3750

def producer_override
  @producer_override
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3757
3758
3759
3760
3761
3762
3763
3764
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3757

def update!(**args)
  @admin_override = args[:admin_override] if args.key?(:admin_override)
  @consumer_override = args[:consumer_override] if args.key?(:consumer_override)
  @default_limit = args[:default_limit] if args.key?(:default_limit)
  @dimensions = args[:dimensions] if args.key?(:dimensions)
  @effective_limit = args[:effective_limit] if args.key?(:effective_limit)
  @producer_override = args[:producer_override] if args.key?(:producer_override)
end