Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Request message for NotebookInternalService.GenerateAccessToken.
Instance Attribute Summary collapse
-
#vm_token ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest
Returns a new instance of GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest.
9830 9831 9832 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9830 def initialize(**args) update!(**args) end |
Instance Attribute Details
#vm_token ⇒ String
Required. The VM identity token (a JWT) for authenticating the VM. https://
cloud.google.com/compute/docs/instances/verifying-instance-identity
Corresponds to the JSON property vmToken
9828 9829 9830 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9828 def vm_token @vm_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9835 9836 9837 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9835 def update!(**args) @vm_token = args[:vm_token] if args.key?(:vm_token) end |