Sha256: b57c848e2870476a6aa7b1ebe552b810ee6791323dc89cd44f5f7efb7419f049
Contents?: true
Size: 1.74 KB
Versions: 5
Compression:
Stored size: 1.74 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 # # Describes the policy to be used for placement of a Service Fabric service # where the instances or replicas of that service must be placed in a # particular domain # class ServicePlacementRequiredDomainPolicyDescription < ServicePlacementPolicyDescription include MsRestAzure def initialize @Type = "RequiredDomain" end attr_accessor :Type # @return [String] The name of the domain that should used for placement # as per this policy. attr_accessor :domain_name # # Mapper for ServicePlacementRequiredDomainPolicyDescription class as # Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RequiredDomain', type: { name: 'Composite', class_name: 'ServicePlacementRequiredDomainPolicyDescription', model_properties: { Type: { client_side_validation: true, required: true, serialized_name: 'Type', type: { name: 'String' } }, domain_name: { client_side_validation: true, required: false, serialized_name: 'DomainName', type: { name: 'String' } } } } } end end end end
Version data entries
5 entries across 5 versions & 1 rubygems