Class: Azure::Compute::Mgmt::V2019_03_01::Models::GalleryApplication
- Inherits:
-
Resource
- Object
- Resource
- Azure::Compute::Mgmt::V2019_03_01::Models::GalleryApplication
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-03-01/generated/azure_mgmt_compute/models/gallery_application.rb
Overview
Specifies information about the gallery Application Definition that you want to create or update.
Instance Attribute Summary collapse
-
#description ⇒ String
resource.
-
#end_of_life_date ⇒ DateTime
Definition.
-
#eula ⇒ String
Definition.
-
#privacy_statement_uri ⇒ String
The privacy statement uri.
-
#release_note_uri ⇒ String
The release note uri.
-
#supported_ostype ⇒ OperatingSystemTypes
supported type of the OS that application is built for.
Attributes inherited from Resource
#id, #location, #name, #tags, #type
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GalleryApplication class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#description ⇒ String
resource. This property is updatable.
18 19 20 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/gallery_application.rb', line 18 def description @description end |
#end_of_life_date ⇒ DateTime
Definition. This property can be used for decommissioning purposes. This property is updatable.
33 34 35 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/gallery_application.rb', line 33 def end_of_life_date @end_of_life_date end |
#eula ⇒ String
Definition.
22 23 24 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/gallery_application.rb', line 22 def eula @eula end |
#privacy_statement_uri ⇒ String
Returns The privacy statement uri.
25 26 27 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/gallery_application.rb', line 25 def privacy_statement_uri @privacy_statement_uri end |
#release_note_uri ⇒ String
Returns The release note uri.
28 29 30 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/gallery_application.rb', line 28 def release_note_uri @release_note_uri end |
#supported_ostype ⇒ OperatingSystemTypes
supported type of the OS that application is built for.
Possible values are:
*Windows*
*Linux*. Possible values include: 'Windows', 'Linux'
39 40 41 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/gallery_application.rb', line 39 def supported_ostype @supported_ostype end |
Class Method Details
.mapper ⇒ Object
Mapper for GalleryApplication 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 151 152 153 154 155 156 157 158 |
# File 'lib/2019-03-01/generated/azure_mgmt_compute/models/gallery_application.rb', line 46 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GalleryApplication', type: { name: 'Composite', class_name: 'GalleryApplication', 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' } }, location: { client_side_validation: true, required: true, serialized_name: 'location', 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 |