pub struct GetNetblockIpRangesResult {
pub cidr_blocks: Output<Vec<String>>,
pub cidr_blocks_ipv4s: Output<Vec<String>>,
pub cidr_blocks_ipv6s: Output<Vec<String>>,
pub id: Output<String>,
pub range_type: Output<Option<String>>,
}
Fields§
§cidr_blocks: Output<Vec<String>>
Retrieve list of all CIDR blocks.
cidr_blocks_ipv4s: Output<Vec<String>>
Retrieve list of the IPv4 CIDR blocks
cidr_blocks_ipv6s: Output<Vec<String>>
Retrieve list of the IPv6 CIDR blocks, if available.
id: Output<String>
The provider-assigned unique ID for this managed resource.
range_type: Output<Option<String>>
Auto Trait Implementations§
impl Freeze for GetNetblockIpRangesResult
impl RefUnwindSafe for GetNetblockIpRangesResult
impl Send for GetNetblockIpRangesResult
impl Sync for GetNetblockIpRangesResult
impl Unpin for GetNetblockIpRangesResult
impl UnwindSafe for GetNetblockIpRangesResult
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