Class: Azure::Web::Mgmt::V2018_02_01::Models::PremierAddOnPatchResource
- Inherits:
-
ProxyOnlyResource
- Object
- ProxyOnlyResource
- Azure::Web::Mgmt::V2018_02_01::Models::PremierAddOnPatchResource
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_web/models/premier_add_on_patch_resource.rb
Overview
ARM resource for a PremierAddOn.
Instance Attribute Summary collapse
-
#marketplace_offer ⇒ String
Premier add on Marketplace offer.
-
#marketplace_publisher ⇒ String
Premier add on Marketplace publisher.
-
#product ⇒ String
Premier add on Product.
-
#sku ⇒ String
Premier add on SKU.
-
#vendor ⇒ String
Premier add on Vendor.
Attributes inherited from ProxyOnlyResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PremierAddOnPatchResource class as Ruby Hash.
Instance Attribute Details
#marketplace_offer ⇒ String
Returns Premier add on Marketplace offer.
28 29 30 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/premier_add_on_patch_resource.rb', line 28 def marketplace_offer @marketplace_offer end |
#marketplace_publisher ⇒ String
Returns Premier add on Marketplace publisher.
25 26 27 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/premier_add_on_patch_resource.rb', line 25 def marketplace_publisher @marketplace_publisher end |
#product ⇒ String
Returns Premier add on Product.
19 20 21 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/premier_add_on_patch_resource.rb', line 19 def product @product end |
#sku ⇒ String
Returns Premier add on SKU.
16 17 18 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/premier_add_on_patch_resource.rb', line 16 def sku @sku end |
#vendor ⇒ String
Returns Premier add on Vendor.
22 23 24 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/premier_add_on_patch_resource.rb', line 22 def vendor @vendor end |
Class Method Details
.mapper ⇒ Object
Mapper for PremierAddOnPatchResource class as Ruby Hash. This will be used for serialization/deserialization.
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 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/premier_add_on_patch_resource.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PremierAddOnPatchResource', type: { name: 'Composite', class_name: 'PremierAddOnPatchResource', 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' } }, kind: { client_side_validation: true, required: false, serialized_name: 'kind', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, sku: { client_side_validation: true, required: false, serialized_name: 'properties.sku', type: { name: 'String' } }, product: { client_side_validation: true, required: false, serialized_name: 'properties.product', type: { name: 'String' } }, vendor: { client_side_validation: true, required: false, serialized_name: 'properties.vendor', type: { name: 'String' } }, marketplace_publisher: { client_side_validation: true, required: false, serialized_name: 'properties.marketplacePublisher', type: { name: 'String' } }, marketplace_offer: { client_side_validation: true, required: false, serialized_name: 'properties.marketplaceOffer', type: { name: 'String' } } } } } end |