Interface CreateTensorboardRunRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateTensorboardRunRequest
,CreateTensorboardRunRequest.Builder
public interface CreateTensorboardRunRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.TensorboardRun
getTensorboardRun()
Required.String
getTensorboardRunId()
Required.com.google.protobuf.ByteString
getTensorboardRunIdBytes()
Required.TensorboardRunOrBuilder
getTensorboardRunOrBuilder()
Required.boolean
hasTensorboardRun()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The resource name of the TensorboardExperiment to create the TensorboardRun in. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The resource name of the TensorboardExperiment to create the TensorboardRun in. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasTensorboardRun
boolean hasTensorboardRun()
Required. The TensorboardRun to create.
.google.cloud.aiplatform.v1beta1.TensorboardRun tensorboard_run = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the tensorboardRun field is set.
-
getTensorboardRun
TensorboardRun getTensorboardRun()
Required. The TensorboardRun to create.
.google.cloud.aiplatform.v1beta1.TensorboardRun tensorboard_run = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The tensorboardRun.
-
getTensorboardRunOrBuilder
TensorboardRunOrBuilder getTensorboardRunOrBuilder()
Required. The TensorboardRun to create.
.google.cloud.aiplatform.v1beta1.TensorboardRun tensorboard_run = 2 [(.google.api.field_behavior) = REQUIRED];
-
getTensorboardRunId
String getTensorboardRunId()
Required. The ID to use for the Tensorboard run, which becomes the final component of the Tensorboard run's resource name. This value should be 1-128 characters, and valid characters are /[a-z][0-9]-/.
string tensorboard_run_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The tensorboardRunId.
-
getTensorboardRunIdBytes
com.google.protobuf.ByteString getTensorboardRunIdBytes()
Required. The ID to use for the Tensorboard run, which becomes the final component of the Tensorboard run's resource name. This value should be 1-128 characters, and valid characters are /[a-z][0-9]-/.
string tensorboard_run_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for tensorboardRunId.
-
-