Interface LoadSnapshotRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LoadSnapshotRequest,LoadSnapshotRequest.Builder
public interface LoadSnapshotRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEnvironment()The resource name of the target environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}"com.google.protobuf.ByteStringgetEnvironmentBytes()The resource name of the target environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}"booleangetSkipAirflowOverridesSetting()Whether or not to skip setting Airflow overrides when loading the environment's state.booleangetSkipEnvironmentVariablesSetting()Whether or not to skip setting environment variables when loading the environment's state.booleangetSkipGcsDataCopying()Whether or not to skip copying Cloud Storage data when loading the environment's state.booleangetSkipPypiPackagesInstallation()Whether or not to skip installing Pypi packages when loading the environment's state.StringgetSnapshotPath()A Cloud Storage path to a snapshot to load, e.g.: "gs://my-bucket/snapshots/project_location_environment_timestamp".com.google.protobuf.ByteStringgetSnapshotPathBytes()A Cloud Storage path to a snapshot to load, e.g.: "gs://my-bucket/snapshots/project_location_environment_timestamp".-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEnvironment
String getEnvironment()
The resource name of the target environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}"string environment = 1;- Returns:
- The environment.
-
getEnvironmentBytes
com.google.protobuf.ByteString getEnvironmentBytes()
The resource name of the target environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}"string environment = 1;- Returns:
- The bytes for environment.
-
getSnapshotPath
String getSnapshotPath()
A Cloud Storage path to a snapshot to load, e.g.: "gs://my-bucket/snapshots/project_location_environment_timestamp".
string snapshot_path = 2;- Returns:
- The snapshotPath.
-
getSnapshotPathBytes
com.google.protobuf.ByteString getSnapshotPathBytes()
A Cloud Storage path to a snapshot to load, e.g.: "gs://my-bucket/snapshots/project_location_environment_timestamp".
string snapshot_path = 2;- Returns:
- The bytes for snapshotPath.
-
getSkipPypiPackagesInstallation
boolean getSkipPypiPackagesInstallation()
Whether or not to skip installing Pypi packages when loading the environment's state.
bool skip_pypi_packages_installation = 3;- Returns:
- The skipPypiPackagesInstallation.
-
getSkipEnvironmentVariablesSetting
boolean getSkipEnvironmentVariablesSetting()
Whether or not to skip setting environment variables when loading the environment's state.
bool skip_environment_variables_setting = 4;- Returns:
- The skipEnvironmentVariablesSetting.
-
getSkipAirflowOverridesSetting
boolean getSkipAirflowOverridesSetting()
Whether or not to skip setting Airflow overrides when loading the environment's state.
bool skip_airflow_overrides_setting = 5;- Returns:
- The skipAirflowOverridesSetting.
-
getSkipGcsDataCopying
boolean getSkipGcsDataCopying()
Whether or not to skip copying Cloud Storage data when loading the environment's state.
bool skip_gcs_data_copying = 6;- Returns:
- The skipGcsDataCopying.
-
-