class Azure::Logic::Mgmt::V2015_02_01_preview::Models::WorkflowAccessKey

Model object.

Attributes

name[RW]

@return [String] Gets the workflow access key name.

not_after[RW]

@return [DateTime] Gets or sets the not-after time.

not_before[RW]

@return [DateTime] Gets or sets the not-before time.

type[RW]

@return [String] Gets the workflow access key type.

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-02-01-preview/generated/azure_mgmt_logic/models/workflow_access_key.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'WorkflowAccessKey',
    type: {
      name: 'Composite',
      class_name: 'WorkflowAccessKey',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        not_before: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.notBefore',
          type: {
            name: 'DateTime'
          }
        },
        not_after: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.notAfter',
          type: {
            name: 'DateTime'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end