class Azure::Network::Mgmt::V2020_04_01::Models::BastionShareableLink
Bastion Shareable Link.
Attributes
bsl[RW]
@return [String] The unique Bastion Shareable Link to the virtual machine.
created_at[RW]
@return [String] The time when the link was created.
message[RW]
@return [String] Optional field indicating the warning or error message related to the vm in case of partial failure.
vm[RW]
@return [VM] Reference of the virtual machine resource.
Public Class Methods
mapper()
click to toggle source
Mapper for BastionShareableLink
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-04-01/generated/azure_mgmt_network/models/bastion_shareable_link.rb, line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'BastionShareableLink', type: { name: 'Composite', class_name: 'BastionShareableLink', model_properties: { vm: { client_side_validation: true, required: true, serialized_name: 'vm', type: { name: 'Composite', class_name: 'VM' } }, bsl: { client_side_validation: true, required: false, read_only: true, serialized_name: 'bsl', type: { name: 'String' } }, created_at: { client_side_validation: true, required: false, read_only: true, serialized_name: 'createdAt', type: { name: 'String' } }, message: { client_side_validation: true, required: false, read_only: true, serialized_name: 'message', type: { name: 'String' } } } } } end