Package com.google.cloud.aiplatform.v1
Interface ExportModelRequest.OutputConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExportModelRequest.OutputConfig
,ExportModelRequest.OutputConfig.Builder
- Enclosing class:
- ExportModelRequest
public static interface ExportModelRequest.OutputConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GcsDestination
getArtifactDestination()
The Cloud Storage location where the Model artifact is to be written to.GcsDestinationOrBuilder
getArtifactDestinationOrBuilder()
The Cloud Storage location where the Model artifact is to be written to.String
getExportFormatId()
The ID of the format in which the Model must be exported.com.google.protobuf.ByteString
getExportFormatIdBytes()
The ID of the format in which the Model must be exported.ContainerRegistryDestination
getImageDestination()
The Google Container Registry or Artifact Registry uri where the Model container image will be copied to.ContainerRegistryDestinationOrBuilder
getImageDestinationOrBuilder()
The Google Container Registry or Artifact Registry uri where the Model container image will be copied to.boolean
hasArtifactDestination()
The Cloud Storage location where the Model artifact is to be written to.boolean
hasImageDestination()
The Google Container Registry or Artifact Registry uri where the Model container image will be copied to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getExportFormatId
String getExportFormatId()
The ID of the format in which the Model must be exported. Each Model lists the [export formats it supports][google.cloud.aiplatform.v1.Model.supported_export_formats]. If no value is provided here, then the first from the list of the Model's supported formats is used by default.
string export_format_id = 1;
- Returns:
- The exportFormatId.
-
getExportFormatIdBytes
com.google.protobuf.ByteString getExportFormatIdBytes()
The ID of the format in which the Model must be exported. Each Model lists the [export formats it supports][google.cloud.aiplatform.v1.Model.supported_export_formats]. If no value is provided here, then the first from the list of the Model's supported formats is used by default.
string export_format_id = 1;
- Returns:
- The bytes for exportFormatId.
-
hasArtifactDestination
boolean hasArtifactDestination()
The Cloud Storage location where the Model artifact is to be written to. Under the directory given as the destination a new one with name "`model-export-<model-display-name>-<timestamp-of-export-call>`", where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format, will be created. Inside, the Model and any of its supporting files will be written. This field should only be set when the `exportableContent` field of the [Model.supported_export_formats] object contains `ARTIFACT`.
.google.cloud.aiplatform.v1.GcsDestination artifact_destination = 3;
- Returns:
- Whether the artifactDestination field is set.
-
getArtifactDestination
GcsDestination getArtifactDestination()
The Cloud Storage location where the Model artifact is to be written to. Under the directory given as the destination a new one with name "`model-export-<model-display-name>-<timestamp-of-export-call>`", where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format, will be created. Inside, the Model and any of its supporting files will be written. This field should only be set when the `exportableContent` field of the [Model.supported_export_formats] object contains `ARTIFACT`.
.google.cloud.aiplatform.v1.GcsDestination artifact_destination = 3;
- Returns:
- The artifactDestination.
-
getArtifactDestinationOrBuilder
GcsDestinationOrBuilder getArtifactDestinationOrBuilder()
The Cloud Storage location where the Model artifact is to be written to. Under the directory given as the destination a new one with name "`model-export-<model-display-name>-<timestamp-of-export-call>`", where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format, will be created. Inside, the Model and any of its supporting files will be written. This field should only be set when the `exportableContent` field of the [Model.supported_export_formats] object contains `ARTIFACT`.
.google.cloud.aiplatform.v1.GcsDestination artifact_destination = 3;
-
hasImageDestination
boolean hasImageDestination()
The Google Container Registry or Artifact Registry uri where the Model container image will be copied to. This field should only be set when the `exportableContent` field of the [Model.supported_export_formats] object contains `IMAGE`.
.google.cloud.aiplatform.v1.ContainerRegistryDestination image_destination = 4;
- Returns:
- Whether the imageDestination field is set.
-
getImageDestination
ContainerRegistryDestination getImageDestination()
The Google Container Registry or Artifact Registry uri where the Model container image will be copied to. This field should only be set when the `exportableContent` field of the [Model.supported_export_formats] object contains `IMAGE`.
.google.cloud.aiplatform.v1.ContainerRegistryDestination image_destination = 4;
- Returns:
- The imageDestination.
-
getImageDestinationOrBuilder
ContainerRegistryDestinationOrBuilder getImageDestinationOrBuilder()
The Google Container Registry or Artifact Registry uri where the Model container image will be copied to. This field should only be set when the `exportableContent` field of the [Model.supported_export_formats] object contains `IMAGE`.
.google.cloud.aiplatform.v1.ContainerRegistryDestination image_destination = 4;
-
-