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.
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
# File 'proto_docs/google/cloud/aiplatform/v1/index_endpoint.rb', line 257 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 |