Class: Azure::Security::Mgmt::V2019_08_01::Models::UpdateIotSecuritySolutionData
- Inherits:
-
TagsResource
- Object
- TagsResource
- Azure::Security::Mgmt::V2019_08_01::Models::UpdateIotSecuritySolutionData
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-08-01/generated/azure_mgmt_security/models/update_iot_security_solution_data.rb
Overview
Model object.
Instance Attribute Summary collapse
- #recommendations_configuration ⇒ Array<RecommendationConfigurationProperties>
- #user_defined_resources ⇒ UserDefinedResourcesProperties
Attributes inherited from TagsResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for UpdateIotSecuritySolutionData class as Ruby Hash.
Instance Attribute Details
#recommendations_configuration ⇒ Array<RecommendationConfigurationProperties>
20 21 22 |
# File 'lib/2019-08-01/generated/azure_mgmt_security/models/update_iot_security_solution_data.rb', line 20 def recommendations_configuration @recommendations_configuration end |
#user_defined_resources ⇒ UserDefinedResourcesProperties
17 18 19 |
# File 'lib/2019-08-01/generated/azure_mgmt_security/models/update_iot_security_solution_data.rb', line 17 def user_defined_resources @user_defined_resources end |
Class Method Details
.mapper ⇒ Object
Mapper for UpdateIotSecuritySolutionData class as Ruby Hash. This will be used for serialization/deserialization.
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 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 |
# File 'lib/2019-08-01/generated/azure_mgmt_security/models/update_iot_security_solution_data.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UpdateIotSecuritySolutionData', type: { name: 'Composite', class_name: 'UpdateIotSecuritySolutionData', model_properties: { tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, user_defined_resources: { client_side_validation: true, required: false, serialized_name: 'properties.userDefinedResources', type: { name: 'Composite', class_name: 'UserDefinedResourcesProperties' } }, recommendations_configuration: { client_side_validation: true, required: false, serialized_name: 'properties.recommendationsConfiguration', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'RecommendationConfigurationPropertiesElementType', type: { name: 'Composite', class_name: 'RecommendationConfigurationProperties' } } } } } } } end |