Class: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ConsumerQuotaMetric

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

Consumer quota settings for a quota metric.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ V1Beta1ConsumerQuotaMetric

Returns a new instance of V1Beta1ConsumerQuotaMetric.



2946
2947
2948
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 2946

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

Instance Attribute Details

#consumer_quota_limitsArray<Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ConsumerQuotaLimit>

The consumer quota for each quota limit defined on the metric. Corresponds to the JSON property consumerQuotaLimits



2920
2921
2922
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 2920

def consumer_quota_limits
  @consumer_quota_limits
end

#display_nameString

The display name of the metric. An example name would be: "CPUs" Corresponds to the JSON property displayName

Returns:

  • (String)


2925
2926
2927
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 2925

def display_name
  @display_name
end

#metricString

The name of the metric. An example name would be: compute.googleapis.com/cpus Corresponds to the JSON property metric

Returns:

  • (String)


2930
2931
2932
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 2930

def metric
  @metric
end

#nameString

The resource name of the quota settings on this metric for this consumer. An example name would be: services/serviceconsumermanagement.googleapis.com/ projects/123/quota/metrics/compute.googleapis.com%2Fcpus The resource name is intended to be opaque and should not be parsed for its component strings, since its representation could change in the future. Corresponds to the JSON propertyname`

Returns:

  • (String)


2939
2940
2941
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 2939

def name
  @name
end

#unitString

The units in which the metric value is reported. Corresponds to the JSON property unit

Returns:

  • (String)


2944
2945
2946
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 2944

def unit
  @unit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2951
2952
2953
2954
2955
2956
2957
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 2951

def update!(**args)
  @consumer_quota_limits = args[:consumer_quota_limits] if args.key?(:consumer_quota_limits)
  @display_name = args[:display_name] if args.key?(:display_name)
  @metric = args[:metric] if args.key?(:metric)
  @name = args[:name] if args.key?(:name)
  @unit = args[:unit] if args.key?(:unit)
end