Class: Azure::Resources::Mgmt::V2019_03_01::Models::Deployment
- Inherits:
-
Object
- Object
- Azure::Resources::Mgmt::V2019_03_01::Models::Deployment
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-03-01/generated/azure_mgmt_resources/models/deployment.rb
Overview
Deployment operation parameters.
Instance Attribute Summary collapse
-
#location ⇒ String
The location to store the deployment data.
-
#properties ⇒ DeploymentProperties
The deployment properties.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Deployment class as Ruby Hash.
Instance Attribute Details
#location ⇒ String
Returns The location to store the deployment data.
16 17 18 |
# File 'lib/2019-03-01/generated/azure_mgmt_resources/models/deployment.rb', line 16 def location @location end |
#properties ⇒ DeploymentProperties
Returns The deployment properties.
19 20 21 |
# File 'lib/2019-03-01/generated/azure_mgmt_resources/models/deployment.rb', line 19 def properties @properties end |
Class Method Details
.mapper ⇒ Object
Mapper for Deployment class as Ruby Hash. This will be used for serialization/deserialization.
26 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 |
# File 'lib/2019-03-01/generated/azure_mgmt_resources/models/deployment.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Deployment', type: { name: 'Composite', class_name: 'Deployment', model_properties: { location: { client_side_validation: true, required: false, serialized_name: 'location', type: { name: 'String' } }, properties: { client_side_validation: true, required: true, serialized_name: 'properties', type: { name: 'Composite', class_name: 'DeploymentProperties' } } } } } end |