Class: Azure::ContainerService::Mgmt::V2020_12_01::Models::ManagedClusterPodIdentity

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-12-01/generated/azure_mgmt_container_service/models/managed_cluster_pod_identity.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#identityUserAssignedIdentity

identity.

Returns:



24
25
26
# File 'lib/2020-12-01/generated/azure_mgmt_container_service/models/managed_cluster_pod_identity.rb', line 24

def identity
  @identity
end

#nameString

Returns Name of the pod identity.

Returns:

  • (String)

    Name of the pod identity.



17
18
19
# File 'lib/2020-12-01/generated/azure_mgmt_container_service/models/managed_cluster_pod_identity.rb', line 17

def name
  @name
end

#namespaceString

Returns Namespace of the pod identity.

Returns:

  • (String)

    Namespace of the pod identity.



20
21
22
# File 'lib/2020-12-01/generated/azure_mgmt_container_service/models/managed_cluster_pod_identity.rb', line 20

def namespace
  @namespace
end

#provisioning_infoManagedClusterPodIdentityProvisioningInfo



32
33
34
# File 'lib/2020-12-01/generated/azure_mgmt_container_service/models/managed_cluster_pod_identity.rb', line 32

def provisioning_info
  @provisioning_info
end

#provisioning_stateManagedClusterPodIdentityProvisioningState

provisioning state of the pod identity. Possible values include: ‘Assigned’, ‘Updating’, ‘Deleting’, ‘Failed’

Returns:



29
30
31
# File 'lib/2020-12-01/generated/azure_mgmt_container_service/models/managed_cluster_pod_identity.rb', line 29

def provisioning_state
  @provisioning_state
end

Class Method Details

.mapperObject

Mapper for ManagedClusterPodIdentity 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
# File 'lib/2020-12-01/generated/azure_mgmt_container_service/models/managed_cluster_pod_identity.rb', line 39

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ManagedClusterPodIdentity',
    type: {
      name: 'Composite',
      class_name: 'ManagedClusterPodIdentity',
      model_properties: {
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        namespace: {
          client_side_validation: true,
          required: true,
          serialized_name: 'namespace',
          type: {
            name: 'String'
          }
        },
        identity: {
          client_side_validation: true,
          required: true,
          serialized_name: 'identity',
          type: {
            name: 'Composite',
            class_name: 'UserAssignedIdentity'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'provisioningState',
          type: {
            name: 'String'
          }
        },
        provisioning_info: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'provisioningInfo',
          type: {
            name: 'Composite',
            class_name: 'ManagedClusterPodIdentityProvisioningInfo'
          }
        }
      }
    }
  }
end