Class GoogleCloudAiplatformV1beta1ExecuteExtensionRequest
Request message for ExtensionExecutionService.ExecuteExtension.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1ExecuteExtensionRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
OperationId
Required. The desired ID of the operation to be executed in this extension as defined in ExtensionOperation.operation_id.
Declaration
[JsonProperty("operationId")]
public virtual string OperationId { get; set; }
Property Value
Type | Description |
---|---|
string |
OperationParams
Optional. Request parameters that will be used for executing this operation. The struct should be in a form of map with param name as the key and actual param value as the value. E.g. If this operation requires a param "name" to be set to "abc". you can set this to something like {"name": "abc"}.
Declaration
[JsonProperty("operationParams")]
public virtual IDictionary<string, object> OperationParams { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, object> |
RuntimeAuthConfig
Optional. Auth config provided at runtime to override the default value in Extension.manifest.auth_config. The AuthConfig.auth_type should match the value in Extension.manifest.auth_config.
Declaration
[JsonProperty("runtimeAuthConfig")]
public virtual GoogleCloudAiplatformV1beta1AuthConfig RuntimeAuthConfig { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1beta1AuthConfig |