Sha256: b1cb124a377be415cd1e9a88cf2eac0de430afe47c32cba43725f4ccb17de876
Contents?: true
Size: 1.76 KB
Versions: 3
Compression:
Stored size: 1.76 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_5_0_36 module Models # # Creates a particular correlation between services. # class ServiceCorrelationDescription include MsRestAzure # @return [ServiceCorrelationScheme] The ServiceCorrelationScheme which # describes the relationship between this service and the service # specified via ServiceName. Possible values include: 'Invalid', # 'Affinity', 'AlignedAffinity', 'NonAlignedAffinity' attr_accessor :scheme # @return [String] The name of the service that the correlation # relationship is established with. attr_accessor :service_name # # Mapper for ServiceCorrelationDescription class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ServiceCorrelationDescription', type: { name: 'Composite', class_name: 'ServiceCorrelationDescription', model_properties: { scheme: { client_side_validation: true, required: true, serialized_name: 'Scheme', type: { name: 'String' } }, service_name: { client_side_validation: true, required: true, serialized_name: 'ServiceName', type: { name: 'String' } } } } } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems