Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::RiskyIPBlobUri

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/risky_ipblob_uri.rb

Overview

The blob uri pointing to Risky IP Report.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#blob_create_date_timeDateTime

Returns Time at which the new Risky IP report was requested.

Returns:

  • (DateTime)

    Time at which the new Risky IP report was requested.



25
26
27
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/risky_ipblob_uri.rb', line 25

def blob_create_date_time
  @blob_create_date_time
end

#job_completion_timeDateTime

Risky IP report was completed.

Returns:

  • (DateTime)

    Time at which the blob creation job for the new



29
30
31
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/risky_ipblob_uri.rb', line 29

def job_completion_time
  @job_completion_time
end

#result_sas_uriString

Returns The blob uri for the report.

Returns:

  • (String)

    The blob uri for the report.



22
23
24
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/risky_ipblob_uri.rb', line 22

def result_sas_uri
  @result_sas_uri
end

#service_idString

Returns The service id for whom the report belongs to.

Returns:

  • (String)

    The service id for whom the report belongs to.



19
20
21
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/risky_ipblob_uri.rb', line 19

def service_id
  @service_id
end

#statusString

Returns Status of the Risky IP report generation.

Returns:

  • (String)

    Status of the Risky IP report generation.



32
33
34
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/risky_ipblob_uri.rb', line 32

def status
  @status
end

#tenant_idString

Returns The tenant id for whom the report belongs to.

Returns:

  • (String)

    The tenant id for whom the report belongs to.



16
17
18
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/risky_ipblob_uri.rb', line 16

def tenant_id
  @tenant_id
end

Class Method Details

.mapperObject

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



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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/risky_ipblob_uri.rb', line 39

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RiskyIPBlobUri',
    type: {
      name: 'Composite',
      class_name: 'RiskyIPBlobUri',
      model_properties: {
        tenant_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tenantId',
          type: {
            name: 'String'
          }
        },
        service_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'serviceId',
          type: {
            name: 'String'
          }
        },
        result_sas_uri: {
          client_side_validation: true,
          required: false,
          serialized_name: 'resultSasUri',
          type: {
            name: 'String'
          }
        },
        blob_create_date_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'blobCreateDateTime',
          type: {
            name: 'DateTime'
          }
        },
        job_completion_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'jobCompletionTime',
          type: {
            name: 'DateTime'
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'status',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end