Class: Google::Cloud::AIPlatform::V1::DeployedIndexAuthConfig
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::DeployedIndexAuthConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/index_endpoint.rb
Overview
Used to set up the auth on the DeployedIndex's private endpoint.
Defined Under Namespace
Classes: AuthProvider
Instance Attribute Summary collapse
-
#auth_provider ⇒ ::Google::Cloud::AIPlatform::V1::DeployedIndexAuthConfig::AuthProvider
Defines the authentication provider that the DeployedIndex uses.
Instance Attribute Details
#auth_provider ⇒ ::Google::Cloud::AIPlatform::V1::DeployedIndexAuthConfig::AuthProvider
Returns Defines the authentication provider that the DeployedIndex uses.
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
# File 'proto_docs/google/cloud/aiplatform/v1/index_endpoint.rb', line 208 class DeployedIndexAuthConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Configuration for an authentication provider, including support for # [JSON Web Token # (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32). # @!attribute [rw] audiences # @return [::Array<::String>] # The list of JWT # [audiences](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.3). # that are allowed to access. A JWT containing any of these audiences will # be accepted. # @!attribute [rw] allowed_issuers # @return [::Array<::String>] # A list of allowed JWT issuers. Each entry must be a valid Google # service account, in the following format: # # `service-account-name@project-id.iam.gserviceaccount.com` class AuthProvider include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |