Package com.google.cloud.gkehub.v1
Interface GenerateConnectManifestRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GenerateConnectManifestRequest
,GenerateConnectManifestRequest.Builder
public interface GenerateConnectManifestRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteString
getImagePullSecretContent()
Optional.boolean
getIsUpgrade()
Optional.String
getName()
Required.com.google.protobuf.ByteString
getNameBytes()
Required.String
getNamespace()
Optional.com.google.protobuf.ByteString
getNamespaceBytes()
Optional.com.google.protobuf.ByteString
getProxy()
Optional.String
getRegistry()
Optional.com.google.protobuf.ByteString
getRegistryBytes()
Optional.String
getVersion()
Optional.com.google.protobuf.ByteString
getVersionBytes()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Required. The Membership resource name the Agent will associate with, in the format `projects/*/locations/*/memberships/*`.
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Required. The Membership resource name the Agent will associate with, in the format `projects/*/locations/*/memberships/*`.
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for name.
-
getNamespace
String getNamespace()
Optional. Namespace for GKE Connect agent resources. Defaults to `gke-connect`. The Connect Agent is authorized automatically when run in the default namespace. Otherwise, explicit authorization must be granted with an additional IAM binding.
string namespace = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The namespace.
-
getNamespaceBytes
com.google.protobuf.ByteString getNamespaceBytes()
Optional. Namespace for GKE Connect agent resources. Defaults to `gke-connect`. The Connect Agent is authorized automatically when run in the default namespace. Otherwise, explicit authorization must be granted with an additional IAM binding.
string namespace = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for namespace.
-
getProxy
com.google.protobuf.ByteString getProxy()
Optional. URI of a proxy if connectivity from the agent to gkeconnect.googleapis.com requires the use of a proxy. Format must be in the form `http(s)://{proxy_address}`, depending on the HTTP/HTTPS protocol supported by the proxy. This will direct the connect agent's outbound traffic through a HTTP(S) proxy.
bytes proxy = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The proxy.
-
getVersion
String getVersion()
Optional. The Connect agent version to use. Defaults to the most current version.
string version = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
Optional. The Connect agent version to use. Defaults to the most current version.
string version = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for version.
-
getIsUpgrade
boolean getIsUpgrade()
Optional. If true, generate the resources for upgrade only. Some resources generated only for installation (e.g. secrets) will be excluded.
bool is_upgrade = 5 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The isUpgrade.
-
getRegistry
String getRegistry()
Optional. The registry to fetch the connect agent image from. Defaults to gcr.io/gkeconnect.
string registry = 6 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The registry.
-
getRegistryBytes
com.google.protobuf.ByteString getRegistryBytes()
Optional. The registry to fetch the connect agent image from. Defaults to gcr.io/gkeconnect.
string registry = 6 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for registry.
-
getImagePullSecretContent
com.google.protobuf.ByteString getImagePullSecretContent()
Optional. The image pull secret content for the registry, if not public.
bytes image_pull_secret_content = 7 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The imagePullSecretContent.
-
-