Class: Azure::Support::Mgmt::V2020_04_01::Models::QuotaTicketDetails
- Inherits:
-
Object
- Object
- Azure::Support::Mgmt::V2020_04_01::Models::QuotaTicketDetails
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-04-01/generated/azure_mgmt_support/models/quota_ticket_details.rb
Overview
Additional set of information required for quota increase support ticket for certain quota types, e.g.: Virtual machine cores. Get complete details about Quota payload support request along with examples at [Support quota request](aka.ms/supportrpquotarequestpayload).
Instance Attribute Summary collapse
-
#quota_change_request_sub_type ⇒ String
type, such as Batch, for which you are requesting a quota increase.
-
#quota_change_request_version ⇒ String
Quota change request version.
-
#quota_change_requests ⇒ Array<QuotaChangeRequest>
providing the region and new quota limits.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for QuotaTicketDetails class as Ruby Hash.
Instance Attribute Details
#quota_change_request_sub_type ⇒ String
type, such as Batch, for which you are requesting a quota increase.
20 21 22 |
# File 'lib/2020-04-01/generated/azure_mgmt_support/models/quota_ticket_details.rb', line 20 def quota_change_request_sub_type @quota_change_request_sub_type end |
#quota_change_request_version ⇒ String
Returns Quota change request version.
23 24 25 |
# File 'lib/2020-04-01/generated/azure_mgmt_support/models/quota_ticket_details.rb', line 23 def quota_change_request_version @quota_change_request_version end |
#quota_change_requests ⇒ Array<QuotaChangeRequest>
providing the region and new quota limits.
27 28 29 |
# File 'lib/2020-04-01/generated/azure_mgmt_support/models/quota_ticket_details.rb', line 27 def quota_change_requests @quota_change_requests end |
Class Method Details
.mapper ⇒ Object
Mapper for QuotaTicketDetails class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2020-04-01/generated/azure_mgmt_support/models/quota_ticket_details.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'QuotaTicketDetails', type: { name: 'Composite', class_name: 'QuotaTicketDetails', model_properties: { quota_change_request_sub_type: { client_side_validation: true, required: false, serialized_name: 'quotaChangeRequestSubType', type: { name: 'String' } }, quota_change_request_version: { client_side_validation: true, required: false, serialized_name: 'quotaChangeRequestVersion', type: { name: 'String' } }, quota_change_requests: { client_side_validation: true, required: false, serialized_name: 'quotaChangeRequests', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'QuotaChangeRequestElementType', type: { name: 'Composite', class_name: 'QuotaChangeRequest' } } } } } } } end |