class Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::RiskyIPBlobUri

The blob uri pointing to Risky IP Report.

Attributes

blob_create_date_time[RW]

@return [DateTime] Time at which the new Risky IP report was requested.

job_completion_time[RW]

@return [DateTime] Time at which the blob creation job for the new Risky IP report was completed.

result_sas_uri[RW]

@return [String] The blob uri for the report.

service_id[RW]

@return [String] The service id for whom the report belongs to.

status[RW]

@return [String] Status of the Risky IP report generation.

tenant_id[RW]

@return [String] The tenant id for whom the report belongs to.

Private Class Methods

mapper() click to toggle source

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

# 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