class Azure::ServiceFabric::V6_3_0_9::Models::ApplicationBackupEntity
Identifies the Service Fabric application which is being backed up.
Attributes
EntityKind[RW]
application_name[RW]
@return [String] The name of the application, including the 'fabric:' URI scheme.
Public Class Methods
mapper()
click to toggle source
Mapper for ApplicationBackupEntity
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.3.0.9/generated/azure_service_fabric/models/application_backup_entity.rb, line 31 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
new()
click to toggle source
# File lib/6.3.0.9/generated/azure_service_fabric/models/application_backup_entity.rb, line 16 def initialize @EntityKind = "Application" end