Class: Azure::SecurityInsights::Mgmt::V2020_01_01::Models::UebaSettings
- Inherits:
-
Settings
- Object
- ResourceWithEtag
- Settings
- Azure::SecurityInsights::Mgmt::V2020_01_01::Models::UebaSettings
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-01-01/generated/azure_mgmt_security_insights/models/ueba_settings.rb
Overview
Represents settings for User and Entity Behavior Analytics enablement.
Instance Attribute Summary collapse
-
#atp_license_status ⇒ LicenseStatus
Threat Protection) license.
-
#is_enabled ⇒ Boolean
is enabled for this workspace.
-
#kind ⇒ Object
Returns the value of attribute kind.
-
#status_in_mcas ⇒ StatusInMcas
Analytics is enabled from MCAS (Microsoft Cloud App Security).
Attributes inherited from ResourceWithEtag
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for UebaSettings class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ UebaSettings
constructor
A new instance of UebaSettings.
Constructor Details
#initialize ⇒ UebaSettings
Returns a new instance of UebaSettings.
16 17 18 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/ueba_settings.rb', line 16 def initialize @kind = "UebaSettings" end |
Instance Attribute Details
#atp_license_status ⇒ LicenseStatus
Threat Protection) license. Possible values include: ‘Enabled’, ‘Disabled’
25 26 27 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/ueba_settings.rb', line 25 def atp_license_status @atp_license_status end |
#is_enabled ⇒ Boolean
is enabled for this workspace.
29 30 31 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/ueba_settings.rb', line 29 def is_enabled @is_enabled end |
#kind ⇒ Object
Returns the value of attribute kind.
20 21 22 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/ueba_settings.rb', line 20 def kind @kind end |
#status_in_mcas ⇒ StatusInMcas
Analytics is enabled from MCAS (Microsoft Cloud App Security). Possible values include: ‘Enabled’, ‘Disabled’
34 35 36 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/ueba_settings.rb', line 34 def status_in_mcas @status_in_mcas end |
Class Method Details
.mapper ⇒ Object
Mapper for UebaSettings class as Ruby Hash. This will be used for serialization/deserialization.
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/2020-01-01/generated/azure_mgmt_security_insights/models/ueba_settings.rb', line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UebaSettings', type: { name: 'Composite', class_name: 'UebaSettings', 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' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, etag: { client_side_validation: true, required: false, serialized_name: 'etag', type: { name: 'String' } }, kind: { client_side_validation: true, required: true, serialized_name: 'kind', type: { name: 'String' } }, atp_license_status: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.atpLicenseStatus', type: { name: 'String' } }, is_enabled: { client_side_validation: true, required: false, serialized_name: 'properties.isEnabled', type: { name: 'Boolean' } }, status_in_mcas: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.statusInMcas', type: { name: 'String' } } } } } end |