class Azure::ServiceFabric::V6_5_0_36::Models::GatewayResourceDescription
This type describes a gateway resource.
Attributes
@return [String] User readable description of the gateway.
@return [NetworkRef] Network that the Application is using.
@return [Array<HttpConfig>] Configuration for http connectivity for this gateway.
@return [String] IP address of the gateway. This is populated in the response and is ignored for incoming requests.
@return [String] Name of the Gateway resource.
@return [NetworkRef] Network the gateway should listen on for requests.
@return [ResourceStatus] Status of the resource. Possible values include: 'Unknown', 'Ready', 'Upgrading', 'Creating', 'Deleting', 'Failed'
@return [String] Gives additional information about the current status of the gateway.
@return [Array<TcpConfig>] Configuration for tcp connectivity for this gateway.
Public Class Methods
Mapper for GatewayResourceDescription
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.5.0.36/generated/azure_service_fabric/models/gateway_resource_description.rb, line 53 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GatewayResourceDescription', type: { name: 'Composite', class_name: 'GatewayResourceDescription', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'properties.description', type: { name: 'String' } }, source_network: { client_side_validation: true, required: true, serialized_name: 'properties.sourceNetwork', type: { name: 'Composite', class_name: 'NetworkRef' } }, destination_network: { client_side_validation: true, required: true, serialized_name: 'properties.destinationNetwork', type: { name: 'Composite', class_name: 'NetworkRef' } }, tcp: { client_side_validation: true, required: false, serialized_name: 'properties.tcp', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'TcpConfigElementType', type: { name: 'Composite', class_name: 'TcpConfig' } } } }, http: { client_side_validation: true, required: false, serialized_name: 'properties.http', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'HttpConfigElementType', type: { name: 'Composite', class_name: 'HttpConfig' } } } }, status: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.status', type: { name: 'String' } }, status_details: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.statusDetails', type: { name: 'String' } }, ip_address: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.ipAddress', type: { name: 'String' } } } } } end