class Azure::ContainerService::Mgmt::V2020_12_01::Models::ManagedClusterPodIdentityException

Model object.

Attributes

name[RW]

@return [String] Name of the pod identity exception.

namespace[RW]

@return [String] Namespace of the pod identity exception.

pod_labels[RW]

@return [Hash{String => String}] Pod labels to match.

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-12-01/generated/azure_mgmt_container_service/models/managed_cluster_pod_identity_exception.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ManagedClusterPodIdentityException',
    type: {
      name: 'Composite',
      class_name: 'ManagedClusterPodIdentityException',
      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'
          }
        },
        pod_labels: {
          client_side_validation: true,
          required: true,
          serialized_name: 'podLabels',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end