[][src]Struct google_manager1_beta2::ReplicaPoolParamsV1Beta1

pub struct ReplicaPoolParamsV1Beta1 {
    pub disks_to_create: Option<Vec<NewDisk>>,
    pub auto_restart: Option<bool>,
    pub can_ip_forward: Option<bool>,
    pub description: Option<String>,
    pub zone: Option<String>,
    pub tags: Option<Tag>,
    pub on_host_maintenance: Option<String>,
    pub disks_to_attach: Option<Vec<ExistingDisk>>,
    pub machine_type: Option<String>,
    pub base_instance_name: Option<String>,
    pub init_action: Option<String>,
    pub metadata: Option<Metadata>,
    pub service_accounts: Option<Vec<ServiceAccount>>,
    pub network_interfaces: Option<Vec<NetworkInterface>>,
}

Configuration information for a ReplicaPools v1beta1 API resource. Directly maps to ReplicaPool InitTemplate.

This type is not used in any activity, and only used as part of another schema.

Fields

disks_to_create: Option<Vec<NewDisk>>

A list of Disk resources to create and attach to each Replica in the Pool. Currently, you can only define one disk and it must be a root persistent disk. Note that Replica Pool will create a root persistent disk for each replica.

auto_restart: Option<bool>

Whether these replicas should be restarted if they experience a failure. The default value is true.

can_ip_forward: Option<bool>

Enables IP Forwarding

description: Option<String>

An optional textual description of the resource.

zone: Option<String>

The zone for this ReplicaPool.

tags: Option<Tag>

A list of tags to apply to the Google Compute Engine instance to identify resources.

on_host_maintenance: Option<String>

no description provided

disks_to_attach: Option<Vec<ExistingDisk>>

A list of existing Persistent Disk resources to attach to each replica in the pool. Each disk will be attached in read-only mode to every replica.

machine_type: Option<String>

The machine type for this instance. Either a complete URL, or the resource name (e.g. n1-standard-1).

base_instance_name: Option<String>

The base name for instances within this ReplicaPool.

init_action: Option<String>

Name of the Action to be run during initialization of a ReplicaPoolModule.

metadata: Option<Metadata>

The metadata key/value pairs assigned to this instance.

service_accounts: Option<Vec<ServiceAccount>>

A list of Service Accounts to enable for this instance.

network_interfaces: Option<Vec<NetworkInterface>>

A list of network interfaces for the instance. Currently only one interface is supported by Google Compute Engine.

Trait Implementations

impl Clone for ReplicaPoolParamsV1Beta1[src]

impl Debug for ReplicaPoolParamsV1Beta1[src]

impl Default for ReplicaPoolParamsV1Beta1[src]

impl<'de> Deserialize<'de> for ReplicaPoolParamsV1Beta1[src]

impl Part for ReplicaPoolParamsV1Beta1[src]

impl Serialize for ReplicaPoolParamsV1Beta1[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any