class Azure::ServiceFabric::V6_2_0_9::Models::ApplicationNameInfo
Information about the application name.
Attributes
id[RW]
@return [String] The identity of the application. This is an encoded representation of the application name. This is used in the REST APIs to identify the application resource. Starting in version 6.0, hierarchical names are delimited with the “~” character. For example, if the application name is “fabric:/myapp/app1”, the application identity would be “myapp~app1” in 6.0+ and “myapp/app1” in previous versions.
name[RW]
@return [String] The name of the application, including the 'fabric:' URI scheme.
Public Class Methods
mapper()
click to toggle source
Mapper for ApplicationNameInfo
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.2.0.9/generated/azure_service_fabric/models/application_name_info.rb, line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationNameInfo', type: { name: 'Composite', class_name: 'ApplicationNameInfo', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'Id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'Name', type: { name: 'String' } } } } } end