pub struct GetInstanceGroupResult {
pub description: Output<String>,
pub id: Output<String>,
pub instances: Output<Vec<String>>,
pub name: Output<Option<String>>,
pub named_ports: Output<Vec<GetInstanceGroupNamedPort>>,
pub network: Output<String>,
pub project: Output<String>,
pub self_link: Output<String>,
pub size: Output<i32>,
pub zone: Output<String>,
}
Fields§
§description: Output<String>
Textual description of the instance group.
id: Output<String>
The provider-assigned unique ID for this managed resource.
instances: Output<Vec<String>>
List of instances in the group.
name: Output<Option<String>>
§named_ports: Output<Vec<GetInstanceGroupNamedPort>>
List of named ports in the group.
network: Output<String>
The URL of the network the instance group is in.
project: Output<String>
§self_link: Output<String>
The URI of the resource.
size: Output<i32>
The number of instances in the group.
zone: Output<String>
Auto Trait Implementations§
impl Freeze for GetInstanceGroupResult
impl RefUnwindSafe for GetInstanceGroupResult
impl Send for GetInstanceGroupResult
impl Sync for GetInstanceGroupResult
impl Unpin for GetInstanceGroupResult
impl UnwindSafe for GetInstanceGroupResult
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more