Class: Azure::ARM::Web::Models::SiteConfigurationSnapshotInfo

Inherits:
MsRestAzure::Resource
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_web/models/site_configuration_snapshot_info.rb

Overview

A snapshot of a web app configuration.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#site_configuration_snapshot_info_idInteger

Returns The id of the snapshot.

Returns:

  • (Integer)

    The id of the snapshot



20
21
22
# File 'lib/generated/azure_mgmt_web/models/site_configuration_snapshot_info.rb', line 20

def site_configuration_snapshot_info_id
  @site_configuration_snapshot_info_id
end

#timeDateTime

Returns The time the snapshot was taken.

Returns:

  • (DateTime)

    The time the snapshot was taken.



17
18
19
# File 'lib/generated/azure_mgmt_web/models/site_configuration_snapshot_info.rb', line 17

def time
  @time
end

Class Method Details

.mapperObject

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



27
28
29
30
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/generated/azure_mgmt_web/models/site_configuration_snapshot_info.rb', line 27

def self.mapper()
  {
    required: false,
    serialized_name: 'SiteConfigurationSnapshotInfo',
    type: {
      name: 'Composite',
      class_name: 'SiteConfigurationSnapshotInfo',
      model_properties: {
        id: {
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        kind: {
          required: false,
          serialized_name: 'kind',
          type: {
            name: 'String'
          }
        },
        location: {
          required: true,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        type: {
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        tags: {
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        time: {
          required: false,
          read_only: true,
          serialized_name: 'properties.time',
          type: {
            name: 'DateTime'
          }
        },
        site_configuration_snapshot_info_id: {
          required: false,
          read_only: true,
          serialized_name: 'properties.id',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end