Struct gapi_grpc::google::cloud::gkehub::v1alpha2::GenerateConnectManifestRequest[][src]

pub struct GenerateConnectManifestRequest {
    pub name: String,
    pub namespace: String,
    pub proxy: Vec<u8>,
    pub version: String,
    pub is_upgrade: bool,
    pub registry: String,
    pub image_pull_secret_content: Vec<u8>,
}

Request message for GkeHub.GenerateConnectManifest method. .

Fields

name: String

Required. The Membership resource name the Agent will associate with, in the format projects/*/locations/*/memberships/*.

namespace: String

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.

proxy: Vec<u8>

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.

version: String

Optional. The Connect agent version to use. Defaults to the most current version.

is_upgrade: bool

Optional. If true, generate the resources for upgrade only. Some resources generated only for installation (e.g. secrets) will be excluded.

registry: String

Optional. The registry to fetch the connect agent image from. Defaults to gcr.io/gkeconnect.

image_pull_secret_content: Vec<u8>

Optional. The image pull secret content for the registry, if not public.

Trait Implementations

impl Clone for GenerateConnectManifestRequest[src]

impl Debug for GenerateConnectManifestRequest[src]

impl Default for GenerateConnectManifestRequest[src]

impl Message for GenerateConnectManifestRequest[src]

impl PartialEq<GenerateConnectManifestRequest> for GenerateConnectManifestRequest[src]

impl StructuralPartialEq for GenerateConnectManifestRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for GenerateConnectManifestRequest

impl Send for GenerateConnectManifestRequest

impl Sync for GenerateConnectManifestRequest

impl Unpin for GenerateConnectManifestRequest

impl UnwindSafe for GenerateConnectManifestRequest

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]