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.
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
# File 'proto_docs/google/cloud/aiplatform/v1/index_endpoint.rb', line 282 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: # # `[email protected]` class AuthProvider include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |