pub struct Instance {Show 26 fields
pub capacity_step_size_gb: Option<i64>,
pub create_time: Option<DateTime<Utc>>,
pub custom_performance_supported: Option<bool>,
pub deletion_protection_enabled: Option<bool>,
pub deletion_protection_reason: Option<String>,
pub description: Option<String>,
pub directory_services: Option<DirectoryServicesConfig>,
pub etag: Option<String>,
pub file_shares: Option<Vec<FileShareConfig>>,
pub kms_key_name: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub max_capacity_gb: Option<i64>,
pub min_capacity_gb: Option<i64>,
pub name: Option<String>,
pub networks: Option<Vec<NetworkConfig>>,
pub performance_config: Option<PerformanceConfig>,
pub performance_limits: Option<PerformanceLimits>,
pub protocol: Option<String>,
pub replication: Option<Replication>,
pub satisfies_pzi: Option<bool>,
pub satisfies_pzs: Option<bool>,
pub state: Option<String>,
pub status_message: Option<String>,
pub suspension_reasons: Option<Vec<String>>,
pub tags: Option<HashMap<String, String>>,
pub tier: Option<String>,
}Expand description
A Filestore 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).
- locations instances create projects (request)
- locations instances get projects (response)
- locations instances patch projects (request)
Fields§
§capacity_step_size_gb: Option<i64>Output only. The incremental increase or decrease in capacity, designated in some number of GB.
create_time: Option<DateTime<Utc>>Output only. The time when the instance was created.
custom_performance_supported: Option<bool>Output only. Indicates whether this instance supports configuring its performance. If true, the user can configure the instance’s performance by using the ‘performance_config’ field.
deletion_protection_enabled: Option<bool>Optional. Indicates whether the instance is protected against deletion.
deletion_protection_reason: Option<String>Optional. The reason for enabling deletion protection.
description: Option<String>The description of the instance (2048 characters or less).
directory_services: Option<DirectoryServicesConfig>Optional. Directory Services configuration for Kerberos-based authentication. Should only be set if protocol is “NFS_V4_1”.
etag: Option<String>Server-specified ETag for the instance resource to prevent simultaneous updates from overwriting each other.
File system shares on the instance. For this version, only a single file share is supported.
kms_key_name: Option<String>KMS key name used for data encryption.
labels: Option<HashMap<String, String>>Resource labels to represent user provided metadata.
max_capacity_gb: Option<i64>Output only. The maximum capacity of the instance in GB.
min_capacity_gb: Option<i64>Output only. The minimum capacity of the instance in GB.
name: Option<String>Output only. The resource name of the instance, in the format projects/{project}/locations/{location}/instances/{instance}.
networks: Option<Vec<NetworkConfig>>VPC networks to which the instance is connected. For this version, only a single network is supported.
performance_config: Option<PerformanceConfig>Optional. Used to configure performance.
performance_limits: Option<PerformanceLimits>Output only. Used for getting performance limits.
protocol: Option<String>Immutable. The protocol indicates the access protocol for all shares in the instance. This field is immutable and it cannot be changed after the instance has been created. Default value: NFS_V3.
replication: Option<Replication>Optional. Replication configuration.
satisfies_pzi: Option<bool>Output only. Reserved for future use.
satisfies_pzs: Option<bool>Output only. Reserved for future use.
state: Option<String>Output only. The instance state.
status_message: Option<String>Output only. Additional information about the instance state, if available.
suspension_reasons: Option<Vec<String>>Output only. Field indicates all the reasons the instance is in “SUSPENDED” state.
Optional. Input only. Immutable. Tag key-value pairs bound to this resource. Each key must be a namespaced name and each value a short name. Example: “123456789012/environment” : “production”, “123456789013/costCenter” : “marketing” See the documentation for more information: - Namespaced name: https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing#retrieving_tag_key - Short name: https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing#retrieving_tag_value
tier: Option<String>The service tier of the instance.