pulumi_wasm_providers_azure_mini::functions::compute::get_bastion_host

Struct GetBastionHostResult

source
pub struct GetBastionHostResult {
Show 16 fields pub copy_paste_enabled: Output<bool>, pub dns_name: Output<String>, pub file_copy_enabled: Output<bool>, pub id: Output<String>, pub ip_configurations: Output<Vec<GetBastionHostIpConfiguration>>, pub ip_connect_enabled: Output<bool>, pub location: Output<String>, pub name: Output<String>, pub resource_group_name: Output<String>, pub scale_units: Output<i32>, pub session_recording_enabled: Output<bool>, pub shareable_link_enabled: Output<bool>, pub sku: Output<String>, pub tags: Output<HashMap<String, String>>, pub tunneling_enabled: Output<bool>, pub zones: Output<Vec<String>>,
}

Fields§

§copy_paste_enabled: Output<bool>

Is Copy/Paste feature enabled for the Bastion Host.

§dns_name: Output<String>

The FQDN for the Bastion Host.

§file_copy_enabled: Output<bool>

Is File Copy feature enabled for the Bastion Host.

§id: Output<String>

The provider-assigned unique ID for this managed resource.

§ip_configurations: Output<Vec<GetBastionHostIpConfiguration>>

A ip_configuration block as defined below.

§ip_connect_enabled: Output<bool>

Is IP Connect feature enabled for the Bastion Host.

§location: Output<String>

The Azure Region where the Bastion Host exists.

§name: Output<String>

The name of the IP configuration.

§resource_group_name: Output<String>§scale_units: Output<i32>

The number of scale units provisioned for the Bastion Host.

§session_recording_enabled: Output<bool>

Is Session Recording feature enabled for the Bastion Host.

§shareable_link_enabled: Output<bool>

Is Shareable Link feature enabled for the Bastion Host.

§sku: Output<String>

The SKU of the Bastion Host.

§tags: Output<HashMap<String, String>>

A mapping of tags assigned to the Bastion Host.

§tunneling_enabled: Output<bool>

Is Tunneling feature enabled for the Bastion Host.

§zones: Output<Vec<String>>

A list of Availability Zones in which this Bastion Host is located.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.