Class: Google::Cloud::CloudQuotas::V1::QuotaIncreaseEligibility

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/api/cloudquotas/v1/resources.rb

Overview

Eligibility information regarding requesting increase adjustment of a quota.

Defined Under Namespace

Modules: IneligibilityReason

Instance Attribute Summary collapse

Instance Attribute Details

#ineligibility_reason::Google::Cloud::CloudQuotas::V1::QuotaIncreaseEligibility::IneligibilityReason

Returns The reason of why it is ineligible to request increased value of the quota. If the is_eligible field is true, it defaults to INELIGIBILITY_REASON_UNSPECIFIED.

Returns:



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'proto_docs/google/api/cloudquotas/v1/resources.rb', line 124

class QuotaIncreaseEligibility
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The enumeration of reasons when it is ineligible to request increase
  # adjustment.
  module IneligibilityReason
    # Default value when is_eligible is true.
    INELIGIBILITY_REASON_UNSPECIFIED = 0

    # The container is not linked with a valid billing account.
    NO_VALID_BILLING_ACCOUNT = 1

    # Other reasons.
    OTHER = 2
  end
end

#is_eligible::Boolean

Returns Whether a higher quota value can be requested for the quota.

Returns:

  • (::Boolean)

    Whether a higher quota value can be requested for the quota.



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'proto_docs/google/api/cloudquotas/v1/resources.rb', line 124

class QuotaIncreaseEligibility
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The enumeration of reasons when it is ineligible to request increase
  # adjustment.
  module IneligibilityReason
    # Default value when is_eligible is true.
    INELIGIBILITY_REASON_UNSPECIFIED = 0

    # The container is not linked with a valid billing account.
    NO_VALID_BILLING_ACCOUNT = 1

    # Other reasons.
    OTHER = 2
  end
end