Class: Azure::ServiceFabric::Mgmt::V2017_07_01_preview::Models::VersionResource
- Inherits:
-
ProxyResource
- Object
- ProxyResource
- Azure::ServiceFabric::Mgmt::V2017_07_01_preview::Models::VersionResource
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-07-01-preview/generated/azure_mgmt_service_fabric/models/version_resource.rb
Overview
A version resource for the specified application type name.
Instance Attribute Summary collapse
-
#app_package_url ⇒ String
The URL to the application package.
- #default_parameter_list ⇒ Array<ApplicationParameter>
-
#provisioning_state ⇒ String
only appears in the response.
Attributes inherited from ProxyResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VersionResource class as Ruby Hash.
Instance Attribute Details
#app_package_url ⇒ String
Returns The URL to the application package.
20 21 22 |
# File 'lib/2017-07-01-preview/generated/azure_mgmt_service_fabric/models/version_resource.rb', line 20 def app_package_url @app_package_url end |
#default_parameter_list ⇒ Array<ApplicationParameter>
23 24 25 |
# File 'lib/2017-07-01-preview/generated/azure_mgmt_service_fabric/models/version_resource.rb', line 23 def default_parameter_list @default_parameter_list end |
#provisioning_state ⇒ String
only appears in the response
17 18 19 |
# File 'lib/2017-07-01-preview/generated/azure_mgmt_service_fabric/models/version_resource.rb', line 17 def provisioning_state @provisioning_state end |
Class Method Details
.mapper ⇒ Object
Mapper for VersionResource class as Ruby Hash. This will be used for serialization/deserialization.
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 105 106 107 108 109 110 111 112 |
# File 'lib/2017-07-01-preview/generated/azure_mgmt_service_fabric/models/version_resource.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VersionResource', type: { name: 'Composite', class_name: 'VersionResource', 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' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, app_package_url: { client_side_validation: true, required: true, serialized_name: 'properties.appPackageUrl', type: { name: 'String' } }, default_parameter_list: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.defaultParameterList', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ApplicationParameterElementType', type: { name: 'Composite', class_name: 'ApplicationParameter' } } } } } } } end |