Sha256: 0d90206239afbc13f48e199fb1e133e4625b760c4bc93553b51e34973f27c649
Contents?: true
Size: 1.53 KB
Versions: 2
Compression:
Stored size: 1.53 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::V7_0_0_42 module Models # # Identifies the Service Fabric stateful service which is being backed up. # class ServiceBackupEntity < BackupEntity include MsRestAzure def initialize @EntityKind = "Service" end attr_accessor :EntityKind # @return [String] The full name of the service with 'fabric:' URI # scheme. attr_accessor :service_name # # Mapper for ServiceBackupEntity class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Service', type: { name: 'Composite', class_name: 'ServiceBackupEntity', model_properties: { EntityKind: { client_side_validation: true, required: true, serialized_name: 'EntityKind', type: { name: 'String' } }, service_name: { client_side_validation: true, required: false, serialized_name: 'ServiceName', type: { name: 'String' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems