Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::GetTdeCertificatesSqlTaskOutput

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_tde_certificates_sql_task_output.rb

Overview

Output of the task that gets TDE certificates in Base64 encoded format.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#base64encoded_certificatesHash{String => Array<String>}

to base 64 encoded format.

Returns:

  • (Hash{String => Array<String>})

    Mapping from certificate name



17
18
19
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_tde_certificates_sql_task_output.rb', line 17

def base64encoded_certificates
  @base64encoded_certificates
end

#validation_errorsArray<ReportableException>

Returns Validation errors.

Returns:



20
21
22
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_tde_certificates_sql_task_output.rb', line 20

def validation_errors
  @validation_errors
end

Class Method Details

.mapperObject

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



27
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
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
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_tde_certificates_sql_task_output.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'GetTdeCertificatesSqlTaskOutput',
    type: {
      name: 'Composite',
      class_name: 'GetTdeCertificatesSqlTaskOutput',
      model_properties: {
        base64encoded_certificates: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'base64EncodedCertificates',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ArrayElementType',
                type: {
                  name: 'Sequence',
                  element: {
                      client_side_validation: true,
                      required: false,
                      serialized_name: 'StringElementType',
                      type: {
                        name: 'String'
                      }
                  }
                }
            }
          }
        },
        validation_errors: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'validationErrors',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ReportableExceptionElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ReportableException'
                }
            }
          }
        }
      }
    }
  }
end