Package com.google.cloud.notebooks.v1
Interface RuntimeAccessConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RuntimeAccessConfig
,RuntimeAccessConfig.Builder
public interface RuntimeAccessConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RuntimeAccessConfig.RuntimeAccessType
getAccessType()
The type of access mode this instance.int
getAccessTypeValue()
The type of access mode this instance.String
getProxyUri()
Output only.com.google.protobuf.ByteString
getProxyUriBytes()
Output only.String
getRuntimeOwner()
The owner of this runtime after creation.com.google.protobuf.ByteString
getRuntimeOwnerBytes()
The owner of this runtime after creation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAccessTypeValue
int getAccessTypeValue()
The type of access mode this instance.
.google.cloud.notebooks.v1.RuntimeAccessConfig.RuntimeAccessType access_type = 1;
- Returns:
- The enum numeric value on the wire for accessType.
-
getAccessType
RuntimeAccessConfig.RuntimeAccessType getAccessType()
The type of access mode this instance.
.google.cloud.notebooks.v1.RuntimeAccessConfig.RuntimeAccessType access_type = 1;
- Returns:
- The accessType.
-
getRuntimeOwner
String getRuntimeOwner()
The owner of this runtime after creation. Format: `alias@example.com` Currently supports one owner only.
string runtime_owner = 2;
- Returns:
- The runtimeOwner.
-
getRuntimeOwnerBytes
com.google.protobuf.ByteString getRuntimeOwnerBytes()
The owner of this runtime after creation. Format: `alias@example.com` Currently supports one owner only.
string runtime_owner = 2;
- Returns:
- The bytes for runtimeOwner.
-
getProxyUri
String getProxyUri()
Output only. The proxy endpoint that is used to access the runtime.
string proxy_uri = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The proxyUri.
-
getProxyUriBytes
com.google.protobuf.ByteString getProxyUriBytes()
Output only. The proxy endpoint that is used to access the runtime.
string proxy_uri = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for proxyUri.
-
-