Sha256: 3e4a2c91ef6446021bba90f074038f7744e6cddfa154b808b43bd98ef3d02eba
Contents?: true
Size: 1.56 KB
Versions: 2
Compression:
Stored size: 1.56 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 application which is being backed up. # class ApplicationBackupEntity < BackupEntity include MsRestAzure def initialize @EntityKind = "Application" end attr_accessor :EntityKind # @return [String] The name of the application, including the 'fabric:' # URI scheme. attr_accessor :application_name # # Mapper for ApplicationBackupEntity class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Application', type: { name: 'Composite', class_name: 'ApplicationBackupEntity', model_properties: { EntityKind: { client_side_validation: true, required: true, serialized_name: 'EntityKind', type: { name: 'String' } }, application_name: { client_side_validation: true, required: false, serialized_name: 'ApplicationName', type: { name: 'String' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems