Class: Azure::ContainerRegistry::Mgmt::V2019_06_01_preview::Models::RunGetLogResult
- Inherits:
-
Object
- Object
- Azure::ContainerRegistry::Mgmt::V2019_06_01_preview::Models::RunGetLogResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-06-01-preview/generated/azure_mgmt_container_registry/models/run_get_log_result.rb
Overview
The result of get log link operation.
Instance Attribute Summary collapse
-
#log_artifact_link ⇒ String
container registry.
-
#log_link ⇒ String
registry.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RunGetLogResult class as Ruby Hash.
Instance Attribute Details
#log_artifact_link ⇒ String
container registry.
21 22 23 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_container_registry/models/run_get_log_result.rb', line 21 def log_artifact_link @log_artifact_link end |
#log_link ⇒ String
registry.
17 18 19 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_container_registry/models/run_get_log_result.rb', line 17 def log_link @log_link end |
Class Method Details
.mapper ⇒ Object
Mapper for RunGetLogResult class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_container_registry/models/run_get_log_result.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RunGetLogResult', type: { name: 'Composite', class_name: 'RunGetLogResult', model_properties: { log_link: { client_side_validation: true, required: false, serialized_name: 'logLink', type: { name: 'String' } }, log_artifact_link: { client_side_validation: true, required: false, serialized_name: 'logArtifactLink', type: { name: 'String' } } } } } end |