Class: Azure::ContainerRegistry::Mgmt::V2019_06_01_preview::Models::RunGetLogResult

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

container registry.

Returns:

  • (String)

    The link to logs in registry for a run on a azure



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

registry.

Returns:

  • (String)

    The link to logs for a run on a azure container



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

.mapperObject

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