Class: Azure::CDN::Mgmt::V2020_09_01::Models::CacheKeyQueryStringActionParameters
- Inherits:
-
Object
- Object
- Azure::CDN::Mgmt::V2020_09_01::Models::CacheKeyQueryStringActionParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-09-01/generated/azure_mgmt_cdn/models/cache_key_query_string_action_parameters.rb
Overview
Defines the parameters for the cache-key query string action.
Instance Attribute Summary collapse
-
#odatatype ⇒ String
‘#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheKeyQueryStringBehaviorActionParameters’ .
-
#query_parameters ⇒ String
separated).
-
#query_string_behavior ⇒ QueryStringBehavior
Possible values include: ‘Include’, ‘IncludeAll’, ‘Exclude’, ‘ExcludeAll’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CacheKeyQueryStringActionParameters class as Ruby Hash.
Instance Attribute Details
#odatatype ⇒ String
‘#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheKeyQueryStringBehaviorActionParameters’ .
18 19 20 |
# File 'lib/2020-09-01/generated/azure_mgmt_cdn/models/cache_key_query_string_action_parameters.rb', line 18 def odatatype @odatatype end |
#query_parameters ⇒ String
separated).
27 28 29 |
# File 'lib/2020-09-01/generated/azure_mgmt_cdn/models/cache_key_query_string_action_parameters.rb', line 27 def query_parameters @query_parameters end |
#query_string_behavior ⇒ QueryStringBehavior
Possible values include: ‘Include’, ‘IncludeAll’, ‘Exclude’, ‘ExcludeAll’
23 24 25 |
# File 'lib/2020-09-01/generated/azure_mgmt_cdn/models/cache_key_query_string_action_parameters.rb', line 23 def query_string_behavior @query_string_behavior end |
Class Method Details
.mapper ⇒ Object
Mapper for CacheKeyQueryStringActionParameters 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 |
# File 'lib/2020-09-01/generated/azure_mgmt_cdn/models/cache_key_query_string_action_parameters.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CacheKeyQueryStringActionParameters', type: { name: 'Composite', class_name: 'CacheKeyQueryStringActionParameters', model_properties: { odatatype: { client_side_validation: true, required: true, is_constant: true, serialized_name: '@odata\\.type', default_value: '#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheKeyQueryStringBehaviorActionParameters', type: { name: 'String' } }, query_string_behavior: { client_side_validation: true, required: true, serialized_name: 'queryStringBehavior', type: { name: 'String' } }, query_parameters: { client_side_validation: true, required: false, serialized_name: 'queryParameters', type: { name: 'String' } } } } } end |