Sha256: 277ff16f5c02587985bbaa6b8f2aaf4cf51a33ef4c8be2a77e33ba4db3bd0f72
Contents?: true
Size: 1.86 KB
Versions: 5
Compression:
Stored size: 1.86 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ServiceFabric::V6_3_0_9 module Models # # Information about the application name. # class ApplicationNameInfo include MsRestAzure # @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. attr_accessor :id # @return [String] The name of the application, including the 'fabric:' # URI scheme. attr_accessor :name # # Mapper for ApplicationNameInfo class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end
Version data entries
5 entries across 5 versions & 1 rubygems