Class: Azure::ServiceFabric::V6_5_0_36::Models::ApplicationBackupEntity

Inherits:
BackupEntity
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/application_backup_entity.rb

Overview

Identifies the Service Fabric application which is being backed up.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeApplicationBackupEntity

Returns a new instance of ApplicationBackupEntity.



16
17
18
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_backup_entity.rb', line 16

def initialize
  @EntityKind = "Application"
end

Instance Attribute Details

#application_nameString

URI scheme.

Returns:

  • (String)

    The name of the application, including the ‘fabric:’



24
25
26
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_backup_entity.rb', line 24

def application_name
  @application_name
end

#EntityKindObject

Returns the value of attribute EntityKind.



20
21
22
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_backup_entity.rb', line 20

def EntityKind
  @EntityKind
end

Class Method Details

.mapperObject

Mapper for ApplicationBackupEntity class as Ruby Hash. This will be used for serialization/deserialization.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/6.5.0.36/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