pub struct GoogleCloudApigeeV1EnvironmentConfig {
Show 23 fields pub addons_config: Option<GoogleCloudApigeeV1RuntimeAddonsConfig>, pub arc_config_location: Option<String>, pub create_time: Option<DateTime<Utc>>, pub data_collectors: Option<Vec<GoogleCloudApigeeV1DataCollectorConfig>>, pub debug_mask: Option<GoogleCloudApigeeV1DebugMask>, pub deployment_groups: Option<Vec<GoogleCloudApigeeV1DeploymentGroupConfig>>, pub deployments: Option<Vec<GoogleCloudApigeeV1DeploymentConfig>>, pub env_scoped_revision_id: Option<i64>, pub feature_flags: Option<HashMap<String, String>>, pub flowhooks: Option<Vec<GoogleCloudApigeeV1FlowHookConfig>>, pub forward_proxy_uri: Option<String>, pub gateway_config_location: Option<String>, pub keystores: Option<Vec<GoogleCloudApigeeV1KeystoreConfig>>, pub name: Option<String>, pub provider: Option<String>, pub pubsub_topic: Option<String>, pub resource_references: Option<Vec<GoogleCloudApigeeV1ReferenceConfig>>, pub resources: Option<Vec<GoogleCloudApigeeV1ResourceConfig>>, pub revision_id: Option<i64>, pub sequence_number: Option<i64>, pub targets: Option<Vec<GoogleCloudApigeeV1TargetServerConfig>>, pub trace_config: Option<GoogleCloudApigeeV1RuntimeTraceConfig>, pub uid: Option<String>,
}
Expand description

There is no detailed description.

§Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields§

§addons_config: Option<GoogleCloudApigeeV1RuntimeAddonsConfig>

The latest runtime configurations for add-ons.

§arc_config_location: Option<String>

The location for the config blob of API Runtime Control, aka Envoy Adapter, for op-based authentication as a URI, e.g. a Cloud Storage URI. This is only used by Envoy-based gateways.

§create_time: Option<DateTime<Utc>>

Time that the environment configuration was created.

§data_collectors: Option<Vec<GoogleCloudApigeeV1DataCollectorConfig>>

List of data collectors used by the deployments in the environment.

§debug_mask: Option<GoogleCloudApigeeV1DebugMask>

Debug mask that applies to all deployments in the environment.

§deployment_groups: Option<Vec<GoogleCloudApigeeV1DeploymentGroupConfig>>

List of deployment groups in the environment.

§deployments: Option<Vec<GoogleCloudApigeeV1DeploymentConfig>>

List of deployments in the environment.

§env_scoped_revision_id: Option<i64>

Revision ID for environment-scoped resources (e.g. target servers, keystores) in this config. This ID will increment any time a resource not scoped to a deployment group changes.

§feature_flags: Option<HashMap<String, String>>

Feature flags inherited from the organization and environment.

§flowhooks: Option<Vec<GoogleCloudApigeeV1FlowHookConfig>>

List of flow hooks in the environment.

§forward_proxy_uri: Option<String>

The forward proxy’s url to be used by the runtime. When set, runtime will send requests to the target via the given forward proxy. This is only used by programmable gateways.

§gateway_config_location: Option<String>

The location for the gateway config blob as a URI, e.g. a Cloud Storage URI. This is only used by Envoy-based gateways.

§keystores: Option<Vec<GoogleCloudApigeeV1KeystoreConfig>>

List of keystores in the environment.

§name: Option<String>

Name of the environment configuration in the following format: organizations/{org}/environments/{env}/configs/{config}

§provider: Option<String>

Used by the Control plane to add context information to help detect the source of the document during diagnostics and debugging.

§pubsub_topic: Option<String>

Name of the PubSub topic for the environment.

§resource_references: Option<Vec<GoogleCloudApigeeV1ReferenceConfig>>

List of resource references in the environment.

§resources: Option<Vec<GoogleCloudApigeeV1ResourceConfig>>

List of resource versions in the environment.

§revision_id: Option<i64>

Revision ID of the environment configuration. The higher the value, the more recently the configuration was deployed.

§sequence_number: Option<i64>

DEPRECATED: Use revision_id.

§targets: Option<Vec<GoogleCloudApigeeV1TargetServerConfig>>

List of target servers in the environment. Disabled target servers are not displayed.

§trace_config: Option<GoogleCloudApigeeV1RuntimeTraceConfig>

Trace configurations. Contains config for the environment and config overrides for specific API proxies.

§uid: Option<String>

Unique ID for the environment configuration. The ID will only change if the environment is deleted and recreated.

Trait Implementations§

source§

impl Clone for GoogleCloudApigeeV1EnvironmentConfig

source§

fn clone(&self) -> GoogleCloudApigeeV1EnvironmentConfig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GoogleCloudApigeeV1EnvironmentConfig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for GoogleCloudApigeeV1EnvironmentConfig

source§

fn default() -> GoogleCloudApigeeV1EnvironmentConfig

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for GoogleCloudApigeeV1EnvironmentConfig

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for GoogleCloudApigeeV1EnvironmentConfig

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl ResponseResult for GoogleCloudApigeeV1EnvironmentConfig

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,