Struct google_redis1::api::Instance

source ·
pub struct Instance {
Show 37 fields pub alternative_location_id: Option<String>, pub auth_enabled: Option<bool>, pub authorized_network: Option<String>, pub available_maintenance_versions: Option<Vec<String>>, pub connect_mode: Option<String>, pub create_time: Option<DateTime<Utc>>, pub current_location_id: Option<String>, pub customer_managed_key: Option<String>, pub display_name: Option<String>, pub host: Option<String>, pub labels: Option<HashMap<String, String>>, pub location_id: Option<String>, pub maintenance_policy: Option<MaintenancePolicy>, pub maintenance_schedule: Option<MaintenanceSchedule>, pub maintenance_version: Option<String>, pub memory_size_gb: Option<i32>, pub name: Option<String>, pub nodes: Option<Vec<NodeInfo>>, pub persistence_config: Option<PersistenceConfig>, pub persistence_iam_identity: Option<String>, pub port: Option<i32>, pub read_endpoint: Option<String>, pub read_endpoint_port: Option<i32>, pub read_replicas_mode: Option<String>, pub redis_configs: Option<HashMap<String, String>>, pub redis_version: Option<String>, pub replica_count: Option<i32>, pub reserved_ip_range: Option<String>, pub satisfies_pzi: Option<bool>, pub satisfies_pzs: Option<bool>, pub secondary_ip_range: Option<String>, pub server_ca_certs: Option<Vec<TlsCertificate>>, pub state: Option<String>, pub status_message: Option<String>, pub suspension_reasons: Option<Vec<String>>, pub tier: Option<String>, pub transit_encryption_mode: Option<String>,
}
Expand description

A Memorystore for Redis instance.

§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§

§alternative_location_id: Option<String>

Optional. If specified, at least one node will be provisioned in this zone in addition to the zone specified in location_id. Only applicable to standard tier. If provided, it must be a different zone from the one provided in [location_id]. Additional nodes beyond the first 2 will be placed in zones selected by the service.

§auth_enabled: Option<bool>

Optional. Indicates whether OSS Redis AUTH is enabled for the instance. If set to “true” AUTH is enabled on the instance. Default value is “false” meaning AUTH is disabled.

§authorized_network: Option<String>

Optional. The full name of the Google Compute Engine network to which the instance is connected. If left unspecified, the default network will be used.

§available_maintenance_versions: Option<Vec<String>>

Optional. The available maintenance versions that an instance could update to.

§connect_mode: Option<String>

Optional. The network connect mode of the Redis instance. If not provided, the connect mode defaults to DIRECT_PEERING.

§create_time: Option<DateTime<Utc>>

Output only. The time the instance was created.

§current_location_id: Option<String>

Output only. The current zone where the Redis primary node is located. In basic tier, this will always be the same as [location_id]. In standard tier, this can be the zone of any node in the instance.

§customer_managed_key: Option<String>

Optional. The KMS key reference that the customer provides when trying to create the instance.

§display_name: Option<String>

An arbitrary and optional user-provided name for the instance.

§host: Option<String>

Output only. Hostname or IP address of the exposed Redis endpoint used by clients to connect to the service.

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

Resource labels to represent user provided metadata

§location_id: Option<String>

Optional. The zone where the instance will be provisioned. If not provided, the service will choose a zone from the specified region for the instance. For standard tier, additional nodes will be added across multiple zones for protection against zonal failures. If specified, at least one node will be provisioned in this zone.

§maintenance_policy: Option<MaintenancePolicy>

Optional. The maintenance policy for the instance. If not provided, maintenance events can be performed at any time.

§maintenance_schedule: Option<MaintenanceSchedule>

Output only. Date and time of upcoming maintenance events which have been scheduled.

§maintenance_version: Option<String>

Optional. The self service update maintenance version. The version is date based such as “20210712_00_00”.

§memory_size_gb: Option<i32>

Required. Redis memory size in GiB.

§name: Option<String>

Required. Unique name of the resource in this scope including project and location using the form: projects/{project_id}/locations/{location_id}/instances/{instance_id} Note: Redis instances are managed and addressed at regional level so location_id here refers to a GCP region; however, users may choose which specific zone (or collection of zones for cross-zone instances) an instance should be provisioned in. Refer to location_id and alternative_location_id fields for more details.

§nodes: Option<Vec<NodeInfo>>

Output only. Info per node.

§persistence_config: Option<PersistenceConfig>

Optional. Persistence configuration parameters

§persistence_iam_identity: Option<String>

Output only. Cloud IAM identity used by import / export operations to transfer data to/from Cloud Storage. Format is “serviceAccount:”. The value may change over time for a given instance so should be checked before each import/export operation.

§port: Option<i32>

Output only. The port number of the exposed Redis endpoint.

§read_endpoint: Option<String>

Output only. Hostname or IP address of the exposed readonly Redis endpoint. Standard tier only. Targets all healthy replica nodes in instance. Replication is asynchronous and replica nodes will exhibit some lag behind the primary. Write requests must target ‘host’.

§read_endpoint_port: Option<i32>

Output only. The port number of the exposed readonly redis endpoint. Standard tier only. Write requests should target ‘port’.

§read_replicas_mode: Option<String>

Optional. Read replicas mode for the instance. Defaults to READ_REPLICAS_DISABLED.

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

Optional. Redis configuration parameters, according to http://redis.io/topics/config. Currently, the only supported parameters are: Redis version 3.2 and newer: * maxmemory-policy * notify-keyspace-events Redis version 4.0 and newer: * activedefrag * lfu-decay-time * lfu-log-factor * maxmemory-gb Redis version 5.0 and newer: * stream-node-max-bytes * stream-node-max-entries

§redis_version: Option<String>

Optional. The version of Redis software. If not provided, latest supported version will be used. Currently, the supported values are: * REDIS_3_2 for Redis 3.2 compatibility * REDIS_4_0 for Redis 4.0 compatibility (default) * REDIS_5_0 for Redis 5.0 compatibility * REDIS_6_X for Redis 6.x compatibility * REDIS_7_0 for Redis 7.0 compatibility

§replica_count: Option<i32>

Optional. The number of replica nodes. The valid range for the Standard Tier with read replicas enabled is [1-5] and defaults to 2. If read replicas are not enabled for a Standard Tier instance, the only valid value is 1 and the default is 1. The valid value for basic tier is 0 and the default is also 0.

§reserved_ip_range: Option<String>

Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. For READ_REPLICAS_ENABLED the default block size is /28.

§satisfies_pzi: Option<bool>

Optional. Output only. Reserved for future use.

§satisfies_pzs: Option<bool>

Optional. Output only. Reserved for future use.

§secondary_ip_range: Option<String>

Optional. Additional IP range for node placement. Required when enabling read replicas on an existing instance. For DIRECT_PEERING mode value must be a CIDR range of size /28, or “auto”. For PRIVATE_SERVICE_ACCESS mode value must be the name of an allocated address range associated with the private service access connection, or “auto”.

§server_ca_certs: Option<Vec<TlsCertificate>>

Output only. List of server CA certificates for the instance.

§state: Option<String>

Output only. The current state of this instance.

§status_message: Option<String>

Output only. Additional information about the current status of this instance, if available.

§suspension_reasons: Option<Vec<String>>

Optional. reasons that causes instance in “SUSPENDED” state.

§tier: Option<String>

Required. The service tier of the instance.

§transit_encryption_mode: Option<String>

Optional. The TLS mode of the Redis instance. If not provided, TLS is disabled for the instance.

Trait Implementations§

source§

impl Clone for Instance

source§

fn clone(&self) -> Instance

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 Instance

source§

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

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

impl Default for Instance

source§

fn default() -> Instance

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

impl<'de> Deserialize<'de> for Instance

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 Instance

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 RequestValue for Instance

source§

impl ResponseResult for Instance

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>,