Struct google_manager1_beta2::ReplicaPoolParamsV1Beta1 [] [src]

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

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.

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

Enables IP Forwarding

An optional textual description of the resource.

The zone for this ReplicaPool.

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

no description provided

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.

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

The base name for instances within this ReplicaPool.

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

The metadata key/value pairs assigned to this instance.

A list of Service Accounts to enable for this instance.

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

Trait Implementations

impl Debug for ReplicaPoolParamsV1Beta1
[src]

Formats the value using the given formatter.

impl Clone for ReplicaPoolParamsV1Beta1
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for ReplicaPoolParamsV1Beta1
[src]

Returns the "default value" for a type. Read more

impl Part for ReplicaPoolParamsV1Beta1
[src]