Class: Azure::OperationalInsights::Mgmt::V2020_08_01::Models::PrivateLinkScopedResource
- Inherits:
-
Object
- Object
- Azure::OperationalInsights::Mgmt::V2020_08_01::Models::PrivateLinkScopedResource
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-08-01/generated/azure_mgmt_operational_insights/models/private_link_scoped_resource.rb
Overview
The private link scope resource reference.
Instance Attribute Summary collapse
-
#resource_id ⇒ String
resource.
-
#scope_id ⇒ String
The private link scope unique Identifier.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PrivateLinkScopedResource class as Ruby Hash.
Instance Attribute Details
#resource_id ⇒ String
resource.
17 18 19 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/private_link_scoped_resource.rb', line 17 def resource_id @resource_id end |
#scope_id ⇒ String
Returns The private link scope unique Identifier.
20 21 22 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/private_link_scoped_resource.rb', line 20 def scope_id @scope_id end |
Class Method Details
.mapper ⇒ Object
Mapper for PrivateLinkScopedResource 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 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/private_link_scoped_resource.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PrivateLinkScopedResource', type: { name: 'Composite', class_name: 'PrivateLinkScopedResource', model_properties: { resource_id: { client_side_validation: true, required: false, serialized_name: 'resourceId', type: { name: 'String' } }, scope_id: { client_side_validation: true, required: false, serialized_name: 'scopeId', type: { name: 'String' } } } } } end |