class Azure::ManagedServiceIdentity::Mgmt::V2015_08_31_preview::Models::Operation

Operation supported by the Microsoft.ManagedIdentity REST API.

Attributes

display[RW]

@return [OperationDisplay] Operation Display. The object that describes the operation.

name[RW]

@return [String] Operation Name. The name of the REST Operation. This is of the format {provider}/{resource}/{operation}.

Private Class Methods

mapper() click to toggle source

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

# File lib/2015-08-31-preview/generated/azure_mgmt_msi/models/operation.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Operation',
    type: {
      name: 'Composite',
      class_name: 'Operation',
      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: 'OperationDisplay'
          }
        }
      }
    }
  }
end