pub struct ResizeRequestResult {
pub creation_timestamp: Output<String>,
pub description: Output<Option<String>>,
pub instance_group_manager: Output<String>,
pub name: Output<String>,
pub project: Output<String>,
pub requested_run_duration: Output<Option<ResizeRequestRequestedRunDuration>>,
pub resize_by: Output<i32>,
pub state: Output<String>,
pub statuses: Output<Vec<ResizeRequestStatus>>,
pub zone: Output<String>,
}
Fields§
§creation_timestamp: Output<String>
The creation timestamp for this resize request in RFC3339 text format.
description: Output<Option<String>>
An optional description of this resize-request.
instance_group_manager: Output<String>
The name of the managed instance group. The name should conform to RFC1035 or be a resource ID. Authorization requires the following IAM permission on the specified resource instanceGroupManager: *compute.instanceGroupManagers.update
name: Output<String>
The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.
project: Output<String>
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
requested_run_duration: Output<Option<ResizeRequestRequestedRunDuration>>
Requested run duration for instances that will be created by this request. At the end of the run duration instance will be deleted. Structure is documented below.
resize_by: Output<i32>
The number of instances to be created by this resize request. The group’s target size will be increased by this number.
state: Output<String>
[Output only] Current state of the request.
statuses: Output<Vec<ResizeRequestStatus>>
[Output only] Status of the request. Structure is documented below.
zone: Output<String>
Name of the compute zone scoping this request. Name should conform to RFC1035.