Class: Azure::Compute::Mgmt::V2020_09_30_preview::Models::GalleryApplicationUpdate

Inherits:
UpdateResourceDefinition show all
Includes:
MsRestAzure
Defined in:
lib/2020-09-30-preview/generated/azure_mgmt_compute/models/gallery_application_update.rb

Overview

Specifies information about the gallery Application Definition that you want to update.

Instance Attribute Summary collapse

Attributes inherited from UpdateResourceDefinition

#id, #name, #tags, #type

Class Method Summary collapse

Instance Attribute Details

#descriptionString

resource. This property is updatable.

Returns:

  • (String)

    The description of this gallery Application Definition



18
19
20
# File 'lib/2020-09-30-preview/generated/azure_mgmt_compute/models/gallery_application_update.rb', line 18

def description
  @description
end

#end_of_life_dateDateTime

Definition. This property can be used for decommissioning purposes. This property is updatable.

Returns:

  • (DateTime)

    The end of life date of the gallery Application



33
34
35
# File 'lib/2020-09-30-preview/generated/azure_mgmt_compute/models/gallery_application_update.rb', line 33

def end_of_life_date
  @end_of_life_date
end

#eulaString

Definition.

Returns:

  • (String)

    The Eula agreement for the gallery Application



22
23
24
# File 'lib/2020-09-30-preview/generated/azure_mgmt_compute/models/gallery_application_update.rb', line 22

def eula
  @eula
end

#privacy_statement_uriString

Returns The privacy statement uri.

Returns:

  • (String)

    The privacy statement uri.



25
26
27
# File 'lib/2020-09-30-preview/generated/azure_mgmt_compute/models/gallery_application_update.rb', line 25

def privacy_statement_uri
  @privacy_statement_uri
end

#release_note_uriString

Returns The release note uri.

Returns:

  • (String)

    The release note uri.



28
29
30
# File 'lib/2020-09-30-preview/generated/azure_mgmt_compute/models/gallery_application_update.rb', line 28

def release_note_uri
  @release_note_uri
end

#supported_ostypeOperatingSystemTypes

supported type of the OS that application is built for.
Possible values are:
*Windows*
*Linux*. Possible values include: 'Windows', 'Linux'

Returns:



39
40
41
# File 'lib/2020-09-30-preview/generated/azure_mgmt_compute/models/gallery_application_update.rb', line 39

def supported_ostype
  @supported_ostype
end

Class Method Details

.mapperObject

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



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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'lib/2020-09-30-preview/generated/azure_mgmt_compute/models/gallery_application_update.rb', line 46

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'GalleryApplicationUpdate',
    type: {
      name: 'Composite',
      class_name: 'GalleryApplicationUpdate',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.description',
          type: {
            name: 'String'
          }
        },
        eula: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.eula',
          type: {
            name: 'String'
          }
        },
        privacy_statement_uri: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.privacyStatementUri',
          type: {
            name: 'String'
          }
        },
        release_note_uri: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.releaseNoteUri',
          type: {
            name: 'String'
          }
        },
        end_of_life_date: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.endOfLifeDate',
          type: {
            name: 'DateTime'
          }
        },
        supported_ostype: {
          client_side_validation: true,
          required: true,
          serialized_name: 'properties.supportedOSType',
          type: {
            name: 'Enum',
            module: 'OperatingSystemTypes'
          }
        }
      }
    }
  }
end