Class: Azure::Security::Mgmt::V2019_08_01::Models::RecommendationConfigurationProperties
- Inherits:
-
Object
- Object
- Azure::Security::Mgmt::V2019_08_01::Models::RecommendationConfigurationProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-08-01/generated/azure_mgmt_security/models/recommendation_configuration_properties.rb
Overview
The type of IoT Security recommendation.
Instance Attribute Summary collapse
- #name ⇒ String
-
#recommendation_type ⇒ RecommendationType
Possible values include: ‘IoT_ACRAuthentication’, ‘IoT_AgentSendsUnutilizedMessages’, ‘IoT_Baseline’, ‘IoT_EdgeHubMemOptimize’, ‘IoT_EdgeLoggingOptions’, ‘IoT_InconsistentModuleSettings’, ‘IoT_InstallAgent’, ‘IoT_IPFilter_DenyAll’, ‘IoT_IPFilter_PermissiveRule’, ‘IoT_OpenPorts’, ‘IoT_PermissiveFirewallPolicy’, ‘IoT_PermissiveInputFirewallRules’, ‘IoT_PermissiveOutputFirewallRules’, ‘IoT_PrivilegedDockerOptions’, ‘IoT_SharedCredentials’, ‘IoT_VulnerableTLSCipherSuite’.
-
#status ⇒ RecommendationConfigStatus
recommendation status is disabled recommendations are not generated.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RecommendationConfigurationProperties class as Ruby Hash.
Instance Attribute Details
#name ⇒ String
27 28 29 |
# File 'lib/2019-08-01/generated/azure_mgmt_security/models/recommendation_configuration_properties.rb', line 27 def name @name end |
#recommendation_type ⇒ RecommendationType
Possible values include: ‘IoT_ACRAuthentication’, ‘IoT_AgentSendsUnutilizedMessages’, ‘IoT_Baseline’, ‘IoT_EdgeHubMemOptimize’, ‘IoT_EdgeLoggingOptions’, ‘IoT_InconsistentModuleSettings’, ‘IoT_InstallAgent’, ‘IoT_IPFilter_DenyAll’, ‘IoT_IPFilter_PermissiveRule’, ‘IoT_OpenPorts’, ‘IoT_PermissiveFirewallPolicy’, ‘IoT_PermissiveInputFirewallRules’, ‘IoT_PermissiveOutputFirewallRules’, ‘IoT_PrivilegedDockerOptions’, ‘IoT_SharedCredentials’, ‘IoT_VulnerableTLSCipherSuite’
24 25 26 |
# File 'lib/2019-08-01/generated/azure_mgmt_security/models/recommendation_configuration_properties.rb', line 24 def recommendation_type @recommendation_type end |
#status ⇒ RecommendationConfigStatus
recommendation status is disabled recommendations are not generated. Possible values include: ‘Disabled’, ‘Enabled’. Default value: ‘Enabled’ .
33 34 35 |
# File 'lib/2019-08-01/generated/azure_mgmt_security/models/recommendation_configuration_properties.rb', line 33 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for RecommendationConfigurationProperties class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2019-08-01/generated/azure_mgmt_security/models/recommendation_configuration_properties.rb', line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RecommendationConfigurationProperties', type: { name: 'Composite', class_name: 'RecommendationConfigurationProperties', model_properties: { recommendation_type: { client_side_validation: true, required: true, serialized_name: 'recommendationType', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, status: { client_side_validation: true, required: true, serialized_name: 'status', default_value: 'Enabled', type: { name: 'String' } } } } } end |