Class: Azure::ApiManagement::Mgmt::V2018_01_01::Models::ProductTagResourceContractProperties

Inherits:
ProductEntityBaseParameters show all
Includes:
MsRestAzure
Defined in:
lib/2018-01-01/generated/azure_mgmt_api_management/models/product_tag_resource_contract_properties.rb

Overview

Product profile.

Instance Attribute Summary collapse

Attributes inherited from ProductEntityBaseParameters

#approval_required, #description, #state, #subscription_required, #subscriptions_limit, #terms

Class Method Summary collapse

Instance Attribute Details

#idString

/products/productId

Returns:

  • (String)

    Identifier of the product in the form of



17
18
19
# File 'lib/2018-01-01/generated/azure_mgmt_api_management/models/product_tag_resource_contract_properties.rb', line 17

def id
  @id
end

#nameString

Returns Product name.

Returns:

  • (String)

    Product name.



20
21
22
# File 'lib/2018-01-01/generated/azure_mgmt_api_management/models/product_tag_resource_contract_properties.rb', line 20

def name
  @name
end

Class Method Details

.mapperObject

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



27
28
29
30
31
32
33
34
35
36
37
38
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# File 'lib/2018-01-01/generated/azure_mgmt_api_management/models/product_tag_resource_contract_properties.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ProductTagResourceContractProperties',
    type: {
      name: 'Composite',
      class_name: 'ProductTagResourceContractProperties',
      model_properties: {
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'description',
          constraints: {
            MaxLength: 1000,
            MinLength: 1
          },
          type: {
            name: 'String'
          }
        },
        terms: {
          client_side_validation: true,
          required: false,
          serialized_name: 'terms',
          type: {
            name: 'String'
          }
        },
        subscription_required: {
          client_side_validation: true,
          required: false,
          serialized_name: 'subscriptionRequired',
          type: {
            name: 'Boolean'
          }
        },
        approval_required: {
          client_side_validation: true,
          required: false,
          serialized_name: 'approvalRequired',
          type: {
            name: 'Boolean'
          }
        },
        subscriptions_limit: {
          client_side_validation: true,
          required: false,
          serialized_name: 'subscriptionsLimit',
          type: {
            name: 'Number'
          }
        },
        state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'state',
          type: {
            name: 'Enum',
            module: 'ProductState'
          }
        },
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          constraints: {
            MaxLength: 300,
            MinLength: 1
          },
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end