Class: Azure::ARM::Web::Models::CertificateOrderAction

Inherits:
MsRestAzure::Resource
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_web/models/certificate_order_action.rb

Overview

Certificate order action.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#certificate_order_action_typeCertificateOrderActionType

include: ‘CertificateIssued’, ‘CertificateOrderCanceled’, ‘CertificateOrderCreated’, ‘CertificateRevoked’, ‘DomainValidationComplete’, ‘FraudDetected’, ‘OrgNameChange’, ‘OrgValidationComplete’, ‘SanDrop’, ‘FraudCleared’, ‘CertificateExpired’, ‘CertificateExpirationWarning’, ‘FraudDocumentationRequired’, ‘Unknown’

Returns:



23
24
25
# File 'lib/generated/azure_mgmt_web/models/certificate_order_action.rb', line 23

def certificate_order_action_type
  @certificate_order_action_type
end

#created_atDateTime

Returns Time at which the certificate action was performed.

Returns:

  • (DateTime)

    Time at which the certificate action was performed.



26
27
28
# File 'lib/generated/azure_mgmt_web/models/certificate_order_action.rb', line 26

def created_at
  @created_at
end

Class Method Details

.mapperObject

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



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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/generated/azure_mgmt_web/models/certificate_order_action.rb', line 33

def self.mapper()
  {
    required: false,
    serialized_name: 'CertificateOrderAction',
    type: {
      name: 'Composite',
      class_name: 'CertificateOrderAction',
      model_properties: {
        id: {
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        kind: {
          required: false,
          serialized_name: 'kind',
          type: {
            name: 'String'
          }
        },
        location: {
          required: true,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        type: {
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        tags: {
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        certificate_order_action_type: {
          required: false,
          serialized_name: 'properties.type',
          type: {
            name: 'Enum',
            module: 'CertificateOrderActionType'
          }
        },
        created_at: {
          required: false,
          serialized_name: 'properties.createdAt',
          type: {
            name: 'DateTime'
          }
        }
      }
    }
  }
end