Class: Azure::SecurityInsights::Mgmt::V2020_01_01::Models::OfficeConsentList
- Inherits:
-
Object
- Object
- Azure::SecurityInsights::Mgmt::V2020_01_01::Models::OfficeConsentList
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-01-01/generated/azure_mgmt_security_insights/models/office_consent_list.rb
Overview
List of all the office365 consents.
Instance Attribute Summary collapse
-
#next_link ⇒ String
URL to fetch the next set of office consents.
-
#value ⇒ Array<OfficeConsent>
Array of the consents.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OfficeConsentList class as Ruby Hash.
Instance Attribute Details
#next_link ⇒ String
Returns URL to fetch the next set of office consents.
16 17 18 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/office_consent_list.rb', line 16 def next_link @next_link end |
#value ⇒ Array<OfficeConsent>
Returns Array of the consents.
19 20 21 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/office_consent_list.rb', line 19 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for OfficeConsentList class as Ruby Hash. This will be used for serialization/deserialization.
26 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 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/office_consent_list.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OfficeConsentList', type: { name: 'Composite', class_name: 'OfficeConsentList', model_properties: { next_link: { client_side_validation: true, required: false, read_only: true, serialized_name: 'nextLink', type: { name: 'String' } }, value: { client_side_validation: true, required: true, serialized_name: 'value', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'OfficeConsentElementType', type: { name: 'Composite', class_name: 'OfficeConsent' } } } } } } } end |