Sha256: 763224b9310b08a439e1f465c24c9160307d9de2eb5f346ebcf5efed7f687ba3
Contents?: true
Size: 1.47 KB
Versions: 5
Compression:
Stored size: 1.47 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_4_0_36 module Models # # Describes an application parameter override to be applied when creating # or upgrading an application. # class ApplicationParameter include MsRestAzure # @return [String] The name of the parameter. attr_accessor :key # @return [String] The value of the parameter. attr_accessor :value # # Mapper for ApplicationParameter class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationParameter', type: { name: 'Composite', class_name: 'ApplicationParameter', model_properties: { key: { client_side_validation: true, required: true, serialized_name: 'Key', type: { name: 'String' } }, value: { client_side_validation: true, required: true, serialized_name: 'Value', type: { name: 'String' } } } } } end end end end
Version data entries
5 entries across 5 versions & 1 rubygems