class Azure::KubernetesConfiguration::Mgmt::V2021_03_01::Models::ResourceProviderOperation

Supported operation of this resource provider.

Attributes

display[RW]

@return [ResourceProviderOperationDisplay] Display metadata associated with the operation.

is_data_action[RW]

@return [Boolean] The flag that indicates whether the operation applies to data plane.

name[RW]

@return [String] Operation name, in format of {provider}/{resource}/{operation}

Private Class Methods

mapper() click to toggle source

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

# File lib/2021-03-01/generated/azure_mgmt_kubernetes_configuration/models/resource_provider_operation.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ResourceProviderOperation',
    type: {
      name: 'Composite',
      class_name: 'ResourceProviderOperation',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        display: {
          client_side_validation: true,
          required: false,
          serialized_name: 'display',
          type: {
            name: 'Composite',
            class_name: 'ResourceProviderOperationDisplay'
          }
        },
        is_data_action: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'isDataAction',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end