Class: Azure::DataBoxEdge::Mgmt::V2019_08_01::Models::RefreshDetails

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-08-01/generated/azure_mgmt_databoxedge/models/refresh_details.rb

Overview

Fields for tracking refresh job on the share or container.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#error_manifest_fileString

last refresh job on this particular share or container, if any. This could be a failed job or a successful job.

Returns:

  • (String)

    Indicates the relative path of the error xml for the



28
29
30
# File 'lib/2019-08-01/generated/azure_mgmt_databoxedge/models/refresh_details.rb', line 28

def error_manifest_file
  @error_manifest_file
end

#in_progress_refresh_job_idString

share or container, this field indicates the ARM resource ID of that job. The field is empty if no job is in progress.

Returns:

  • (String)

    If a refresh job is currently in progress on this



18
19
20
# File 'lib/2019-08-01/generated/azure_mgmt_databoxedge/models/refresh_details.rb', line 18

def in_progress_refresh_job_id
  @in_progress_refresh_job_id
end

#last_completed_refresh_job_time_in_utcDateTime

job on this particular share or container, if any.This could be a failed job or a successful job.

Returns:

  • (DateTime)

    Indicates the completed time for the last refresh



23
24
25
# File 'lib/2019-08-01/generated/azure_mgmt_databoxedge/models/refresh_details.rb', line 23

def last_completed_refresh_job_time_in_utc
  @last_completed_refresh_job_time_in_utc
end

#last_jobString

particular share or container,if any. This could be a failed job or a successful job.

Returns:

  • (String)

    Indicates the id of the last refresh job on this



33
34
35
# File 'lib/2019-08-01/generated/azure_mgmt_databoxedge/models/refresh_details.rb', line 33

def last_job
  @last_job
end

Class Method Details

.mapperObject

Mapper for RefreshDetails class as Ruby Hash. This will be used for serialization/deserialization.



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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/2019-08-01/generated/azure_mgmt_databoxedge/models/refresh_details.rb', line 40

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RefreshDetails',
    type: {
      name: 'Composite',
      class_name: 'RefreshDetails',
      model_properties: {
        in_progress_refresh_job_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'inProgressRefreshJobId',
          type: {
            name: 'String'
          }
        },
        last_completed_refresh_job_time_in_utc: {
          client_side_validation: true,
          required: false,
          serialized_name: 'lastCompletedRefreshJobTimeInUTC',
          type: {
            name: 'DateTime'
          }
        },
        error_manifest_file: {
          client_side_validation: true,
          required: false,
          serialized_name: 'errorManifestFile',
          type: {
            name: 'String'
          }
        },
        last_job: {
          client_side_validation: true,
          required: false,
          serialized_name: 'lastJob',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end