Class: Google::Cloud::Speech::V2::AccessMetadata

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/speech/v2/locations_metadata.rb

Overview

The access metadata for a particular region. This can be applied if the org policy for the given project disallows a particular region.

Defined Under Namespace

Modules: ConstraintType

Instance Attribute Summary collapse

Instance Attribute Details

#constraint_type::Google::Cloud::Speech::V2::AccessMetadata::ConstraintType

Returns Describes the different types of constraints that are applied.

Returns:



89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'proto_docs/google/cloud/speech/v2/locations_metadata.rb', line 89

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

  # Describes the different types of constraints that can be applied on a
  # region.
  module ConstraintType
    # Unspecified constraint applied.
    CONSTRAINT_TYPE_UNSPECIFIED = 0

    # The project's org policy disallows the given region.
    RESOURCE_LOCATIONS_ORG_POLICY_CREATE_CONSTRAINT = 1
  end
end