Class: IntersightClient::AssetDeviceContractInformationAllOf

Inherits:
Object
  • Object
show all
Defined in:
lib/intersight_client/models/asset_device_contract_information_all_of.rb

Overview

Definition of the list of properties defined in ‘asset.DeviceContractInformation’, excluding properties defined in parent classes.

Defined Under Namespace

Classes: EnumAttributeValidator

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AssetDeviceContractInformationAllOf

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 219

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `IntersightClient::AssetDeviceContractInformationAllOf` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!self.class.acceptable_attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `#{self.class.name}`. Please check the name to make sure it's valid. List of attributes: " + self.class.acceptable_attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'class_id')
    self.class_id = attributes[:'class_id']
  else
    self.class_id = 'asset.DeviceContractInformation'
  end

  if attributes.key?(:'object_type')
    self.object_type = attributes[:'object_type']
  else
    self.object_type = 'asset.DeviceContractInformation'
  end

  if attributes.key?(:'contract')
    self.contract = attributes[:'contract']
  end

  if attributes.key?(:'contract_status')
    self.contract_status = attributes[:'contract_status']
  else
    self.contract_status = 'Unknown'
  end

  if attributes.key?(:'contract_status_reason')
    self.contract_status_reason = attributes[:'contract_status_reason']
  else
    self.contract_status_reason = ''
  end

  if attributes.key?(:'contract_updated_time')
    self.contract_updated_time = attributes[:'contract_updated_time']
  end

  if attributes.key?(:'covered_product_line_end_date')
    self.covered_product_line_end_date = attributes[:'covered_product_line_end_date']
  end

  if attributes.key?(:'device_id')
    self.device_id = attributes[:'device_id']
  end

  if attributes.key?(:'device_type')
    self.device_type = attributes[:'device_type']
  else
    self.device_type = 'None'
  end

  if attributes.key?(:'end_customer')
    self.end_customer = attributes[:'end_customer']
  end

  if attributes.key?(:'end_user_global_ultimate')
    self.end_user_global_ultimate = attributes[:'end_user_global_ultimate']
  end

  if attributes.key?(:'is_valid')
    self.is_valid = attributes[:'is_valid']
  end

  if attributes.key?(:'item_type')
    self.item_type = attributes[:'item_type']
  end

  if attributes.key?(:'maintenance_purchase_order_number')
    self.maintenance_purchase_order_number = attributes[:'maintenance_purchase_order_number']
  end

  if attributes.key?(:'maintenance_sales_order_number')
    self.maintenance_sales_order_number = attributes[:'maintenance_sales_order_number']
  end

  if attributes.key?(:'platform_type')
    self.platform_type = attributes[:'platform_type']
  else
    self.platform_type = ''
  end

  if attributes.key?(:'product')
    self.product = attributes[:'product']
  end

  if attributes.key?(:'purchase_order_number')
    self.purchase_order_number = attributes[:'purchase_order_number']
  end

  if attributes.key?(:'reseller_global_ultimate')
    self.reseller_global_ultimate = attributes[:'reseller_global_ultimate']
  end

  if attributes.key?(:'sales_order_number')
    self.sales_order_number = attributes[:'sales_order_number']
  end

  if attributes.key?(:'service_description')
    self.service_description = attributes[:'service_description']
  end

  if attributes.key?(:'service_end_date')
    self.service_end_date = attributes[:'service_end_date']
  end

  if attributes.key?(:'service_level')
    self.service_level = attributes[:'service_level']
  end

  if attributes.key?(:'service_sku')
    self.service_sku = attributes[:'service_sku']
  end

  if attributes.key?(:'service_start_date')
    self.service_start_date = attributes[:'service_start_date']
  end

  if attributes.key?(:'state_contract')
    self.state_contract = attributes[:'state_contract']
  else
    self.state_contract = 'Update'
  end

  if attributes.key?(:'warranty_end_date')
    self.warranty_end_date = attributes[:'warranty_end_date']
  end

  if attributes.key?(:'warranty_type')
    self.warranty_type = attributes[:'warranty_type']
  end

  if attributes.key?(:'registered_device')
    self.registered_device = attributes[:'registered_device']
  end

  if attributes.key?(:'source')
    self.source = attributes[:'source']
  end
end

Instance Attribute Details

#class_idObject

The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.



20
21
22
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 20

def class_id
  @class_id
end

#contractObject

Returns the value of attribute contract.



25
26
27
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 25

def contract
  @contract
end

#contract_statusObject

Calculated contract status that is derived based on the service line status and contract end date. It is different from serviceLineStatus property. serviceLineStatus gives us ACTIVE, OVERDUE, EXPIRED. These are transformed into Active, Expiring Soon and Not Covered. * ‘Unknown` - The device’s contract status cannot be determined. * ‘Not Covered` - The Cisco device does not have a valid support contract. * `Active` - The Cisco device is covered under a active support contract. * `Expiring Soon` - The contract for this Cisco device is going to expire in the next 30 days.



28
29
30
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 28

def contract_status
  @contract_status
end

#contract_status_reasonObject

Reason for contract status. In case of Not Covered, reason is either Terminated or Expired. * “ - There is no reason for the specified contract status. * ‘Line Item Expired` - The Cisco device does not have a valid support contract, it has expired. * `Line Item Terminated` - The Cisco device does not have a valid support contract, it has been terminated.



31
32
33
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 31

def contract_status_reason
  @contract_status_reason
end

#contract_updated_timeObject

Date and time indicating when the contract data is last fetched from Cisco’s Contract API successfully.



34
35
36
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 34

def contract_updated_time
  @contract_updated_time
end

#covered_product_line_end_dateObject

End date of the covered product line. The coverage end date is fetched from Cisco SN2INFO API.



37
38
39
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 37

def covered_product_line_end_date
  @covered_product_line_end_date
end

#device_idObject

Unique identifier of the Cisco device. This information is used to query Cisco APIx SN2INFO and CCWR databases.



40
41
42
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 40

def device_id
  @device_id
end

#device_typeObject

Type used to classify the device in Cisco Intersight. Currently supported values are Server and FabricInterconnect. This will be expanded to support more types in future. * ‘None` - A default value to catch cases where device type is not correctly detected. * `CiscoUcsServer` - A device of type server. It includes Cisco IMC and UCS Managed servers. * `CiscoUcsFI` - A device of type Fabric Interconnect. It includes the various types of Cisco Fabric Interconnects supported by Cisco Intersight. * `CiscoUcsChassis` - A device of type Chassis. It includes various UCS chassis supported by Cisco Intersight. * `CiscoNexusSwitch` - A device of type Nexus switch. It includes various Nexus switches supported by Cisco Intersight.



43
44
45
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 43

def device_type
  @device_type
end

#end_customerObject

Returns the value of attribute end_customer.



45
46
47
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 45

def end_customer
  @end_customer
end

#end_user_global_ultimateObject

Returns the value of attribute end_user_global_ultimate.



47
48
49
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 47

def end_user_global_ultimate
  @end_user_global_ultimate
end

#is_validObject

Validates if the device is a genuine Cisco device. Validated is done using the Cisco SN2INFO APIs.



50
51
52
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 50

def is_valid
  @is_valid
end

#item_typeObject

Item type of this specific Cisco device. example "Chassis".



53
54
55
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 53

def item_type
  @item_type
end

#maintenance_purchase_order_numberObject

Maintenance purchase order number for the Cisco device.



56
57
58
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 56

def maintenance_purchase_order_number
  @maintenance_purchase_order_number
end

#maintenance_sales_order_numberObject

Maintenance sales order number for the Cisco device.



59
60
61
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 59

def maintenance_sales_order_number
  @maintenance_sales_order_number
end

#object_typeObject

The fully-qualified name of the instantiated, concrete type. The value should be the same as the ‘ClassId’ property.



23
24
25
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 23

def object_type
  @object_type
end

#platform_typeObject

The platform type of the Cisco device. * “ - The device reported an empty or unrecognized platform type. * ‘APIC` - An Application Policy Infrastructure Controller cluster. * `DCNM` - A Data Center Network Manager instance. Data Center Network Manager (DCNM) is the network management platform for all NX-OS-enabled deployments, spanning new fabric architectures, IP Fabric for Media, and storage networking deployments for the Cisco Nexus-powered data center. * `UCSFI` - A UCS Fabric Interconnect in HA or standalone mode, which is being managed by UCS Manager (UCSM). * `UCSFIISM` - A UCS Fabric Interconnect in HA or standalone mode, managed directly by Intersight. * `IMC` - A standalone UCS Server Integrated Management Controller. * `IMCM4` - A standalone UCS M4 Server. * `IMCM5` - A standalone UCS M5 server. * `IMCRack` - A standalone UCS M6 and above server. * `UCSIOM` - An UCS Chassis IO module. * `HX` - A HyperFlex storage controller. * `HyperFlexAP` - A HyperFlex Application Platform. * `IWE` - An Intersight Workload Engine. * `UCSD` - A UCS Director virtual appliance. Cisco UCS Director automates, orchestrates, and manages Cisco and third-party hardware. * `IntersightAppliance` - A Cisco Intersight Connected Virtual Appliance. * `IntersightAssist` - A Cisco Intersight Assist. * `PureStorageFlashArray` - A Pure Storage FlashArray device. * `UCSC890` - A standalone Cisco UCSC890 server. * `NetAppOntap` - A NetApp ONTAP storage system. * `NetAppActiveIqUnifiedManager` - A NetApp Active IQ Unified Manager. * `EmcScaleIo` - An EMC ScaleIO storage system. * `EmcVmax` - An EMC VMAX storage system. * `EmcVplex` - An EMC VPLEX storage system. * `EmcXtremIo` - An EMC XtremIO storage system. * `VmwareVcenter` - A VMware vCenter device that manages Virtual Machines. * `MicrosoftHyperV` - A Microsoft Hyper-V system that manages Virtual Machines. * `AppDynamics` - An AppDynamics controller that monitors applications. * `Dynatrace` - A software-intelligence monitoring platform that simplifies enterprise cloud complexity and accelerates digital transformation. * `NewRelic` - A software-intelligence monitoring platform that simplifies enterprise cloud complexity and accelerates digital transformation. * `ServiceNow` - A cloud-based workflow automation platform that enables enterprise organizations to improve operational efficiencies by streamlining and automating routine work tasks. * `ReadHatOpenStack` - An OpenStack target manages Virtual Machines, Physical Machines, Datacenters and Virtual Datacenters using different OpenStack services as administrative endpoints. * `CloudFoundry` - An open source cloud platform on which developers can build, deploy, run and scale applications. * `MicrosoftAzureApplicationInsights` - A feature of Azure Monitor, is an extensible Application Performance Management service for developers and DevOps professionals to monitor their live applications. * `OpenStack` - An OpenStack target manages Virtual Machines, Physical Machines, Datacenters and Virtual Datacenters using different OpenStack services as administrative endpoints. * `MicrosoftSqlServer` - A Microsoft SQL database server. * `Kubernetes` - A Kubernetes cluster that runs containerized applications. * `AmazonWebService` - A Amazon web service target that discovers and monitors different services like EC2. It discovers entities like VMs, Volumes, regions etc. and monitors attributes like Mem, CPU, cost. * `AmazonWebServiceBilling` - A Amazon web service billing target to retrieve billing information stored in S3 bucket. * `MicrosoftAzureServicePrincipal` - A Microsoft Azure Service Principal target that discovers all the associated Azure subscriptions. * `MicrosoftAzureEnterpriseAgreement` - A Microsoft Azure Enterprise Agreement target that discovers cost, billing and RIs. * `DellCompellent` - A Dell Compellent storage system. * `HPE3Par` - A HPE 3PAR storage system. * `RedHatEnterpriseVirtualization` - A Red Hat Enterprise Virtualization Hypervisor system that manages Virtual Machines. * `NutanixAcropolis` - A Nutanix Acropolis system that combines servers and storage into a distributed infrastructure platform. * `HPEOneView` - A HPE Oneview management system that manages compute, storage, and networking. * `ServiceEngine` - Cisco Application Services Engine. Cisco Application Services Engine is a platform to deploy and manage applications. * `HitachiVirtualStoragePlatform` - A Hitachi Virtual Storage Platform also referred to as Hitachi VSP. It includes various storage systems designed for data centers. * `IMCBlade` - An Intersight managed UCS Blade Server. * `TerraformCloud` - A Terraform Cloud account. * `TerraformAgent` - A Terraform Cloud Agent that Intersight will deploy in datacenter. The agent will execute Terraform plan for Terraform Cloud workspace configured to use the agent. * `CustomTarget` - An external endpoint added as Target that can be accessed through its HTTP API interface in Intersight Orchestrator automation workflow.Standard HTTP authentication scheme supported: Basic. * `AnsibleEndpoint` - An external endpoint added as Target that can be accessed through Ansible in Intersight Cloud Orchestrator automation workflow. * `HTTPEndpoint` - An external endpoint added as Target that can be accessed through its HTTP API interface in Intersight Orchestrator automation workflow.Standard HTTP authentication scheme supported: Basic, Bearer Token. * `SSHEndpoint` - An external endpoint added as Target that can be accessed through SSH in Intersight Cloud Orchestrator automation workflow. * `CiscoCatalyst` - A Cisco Catalyst networking switch device.



62
63
64
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 62

def platform_type
  @platform_type
end

#productObject

Returns the value of attribute product.



64
65
66
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 64

def product
  @product
end

#purchase_order_numberObject

Purchase order number for the Cisco device. It is a unique number assigned for every purchase.



67
68
69
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 67

def purchase_order_number
  @purchase_order_number
end

#registered_deviceObject

Returns the value of attribute registered_device.



98
99
100
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 98

def registered_device
  @registered_device
end

#reseller_global_ultimateObject

Returns the value of attribute reseller_global_ultimate.



69
70
71
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 69

def reseller_global_ultimate
  @reseller_global_ultimate
end

#sales_order_numberObject

Sales order number for the Cisco device. It is a unique number assigned for every sale.



72
73
74
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 72

def sales_order_number
  @sales_order_number
end

#service_descriptionObject

The type of service contract that covers the Cisco device.



75
76
77
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 75

def service_description
  @service_description
end

#service_end_dateObject

End date for the Cisco service contract that covers this Cisco device.



78
79
80
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 78

def service_end_date
  @service_end_date
end

#service_levelObject

The type of service contract that covers the Cisco device.



81
82
83
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 81

def service_level
  @service_level
end

#service_skuObject

The SKU of the service contract that covers the Cisco device.



84
85
86
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 84

def service_sku
  @service_sku
end

#service_start_dateObject

Start date for the Cisco service contract that covers this Cisco device.



87
88
89
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 87

def service_start_date
  @service_start_date
end

#sourceObject

Returns the value of attribute source.



100
101
102
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 100

def source
  @source
end

#state_contractObject

Internal property used for triggering and tracking actions for contract information. * ‘Update` - Sn2Info/Contract information needs to be updated. * `OK` - Sn2Info/Contract information was fetched succcessfuly and updated. * `Failed` - Sn2Info/Contract information was not available or failed while fetching. * `Retry` - Sn2Info/Contract information update failed and will be retried later.



90
91
92
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 90

def state_contract
  @state_contract
end

#warranty_end_dateObject

End date for the warranty that covers the Cisco device.



93
94
95
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 93

def warranty_end_date
  @warranty_end_date
end

#warranty_typeObject

Type of warranty that covers the Cisco device.



96
97
98
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 96

def warranty_type
  @warranty_type
end

Class Method Details

.acceptable_attribute_mapObject

Returns the key-value map of all the JSON attributes this model knows about



166
167
168
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 166

def self.acceptable_attribute_map
  attribute_map
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



161
162
163
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 161

def self.acceptable_attributes
  attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 125

def self.attribute_map
  {
    :'class_id' => :'ClassId',
    :'object_type' => :'ObjectType',
    :'contract' => :'Contract',
    :'contract_status' => :'ContractStatus',
    :'contract_status_reason' => :'ContractStatusReason',
    :'contract_updated_time' => :'ContractUpdatedTime',
    :'covered_product_line_end_date' => :'CoveredProductLineEndDate',
    :'device_id' => :'DeviceId',
    :'device_type' => :'DeviceType',
    :'end_customer' => :'EndCustomer',
    :'end_user_global_ultimate' => :'EndUserGlobalUltimate',
    :'is_valid' => :'IsValid',
    :'item_type' => :'ItemType',
    :'maintenance_purchase_order_number' => :'MaintenancePurchaseOrderNumber',
    :'maintenance_sales_order_number' => :'MaintenanceSalesOrderNumber',
    :'platform_type' => :'PlatformType',
    :'product' => :'Product',
    :'purchase_order_number' => :'PurchaseOrderNumber',
    :'reseller_global_ultimate' => :'ResellerGlobalUltimate',
    :'sales_order_number' => :'SalesOrderNumber',
    :'service_description' => :'ServiceDescription',
    :'service_end_date' => :'ServiceEndDate',
    :'service_level' => :'ServiceLevel',
    :'service_sku' => :'ServiceSku',
    :'service_start_date' => :'ServiceStartDate',
    :'state_contract' => :'StateContract',
    :'warranty_end_date' => :'WarrantyEndDate',
    :'warranty_type' => :'WarrantyType',
    :'registered_device' => :'RegisteredDevice',
    :'source' => :'Source'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



526
527
528
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 526

def self.build_from_hash(attributes)
  new.build_from_hash(attributes)
end

.openapi_nullableObject

List of attributes with nullable: true



207
208
209
210
211
212
213
214
215
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 207

def self.openapi_nullable
  Set.new([
    :'contract',
    :'end_customer',
    :'end_user_global_ultimate',
    :'product',
    :'reseller_global_ultimate',
  ])
end

.openapi_typesObject

Attribute type mapping.



171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 171

def self.openapi_types
  {
    :'class_id' => :'String',
    :'object_type' => :'String',
    :'contract' => :'AssetContractInformation',
    :'contract_status' => :'String',
    :'contract_status_reason' => :'String',
    :'contract_updated_time' => :'Time',
    :'covered_product_line_end_date' => :'String',
    :'device_id' => :'String',
    :'device_type' => :'String',
    :'end_customer' => :'AssetCustomerInformation',
    :'end_user_global_ultimate' => :'AssetGlobalUltimate',
    :'is_valid' => :'Boolean',
    :'item_type' => :'String',
    :'maintenance_purchase_order_number' => :'String',
    :'maintenance_sales_order_number' => :'String',
    :'platform_type' => :'String',
    :'product' => :'AssetProductInformation',
    :'purchase_order_number' => :'String',
    :'reseller_global_ultimate' => :'AssetGlobalUltimate',
    :'sales_order_number' => :'String',
    :'service_description' => :'String',
    :'service_end_date' => :'Time',
    :'service_level' => :'String',
    :'service_sku' => :'String',
    :'service_start_date' => :'Time',
    :'state_contract' => :'String',
    :'warranty_end_date' => :'String',
    :'warranty_type' => :'String',
    :'registered_device' => :'AssetDeviceRegistrationRelationship',
    :'source' => :'MoBaseMoRelationship'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 476

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      class_id == o.class_id &&
      object_type == o.object_type &&
      contract == o.contract &&
      contract_status == o.contract_status &&
      contract_status_reason == o.contract_status_reason &&
      contract_updated_time == o.contract_updated_time &&
      covered_product_line_end_date == o.covered_product_line_end_date &&
      device_id == o.device_id &&
      device_type == o.device_type &&
      end_customer == o.end_customer &&
      end_user_global_ultimate == o.end_user_global_ultimate &&
      is_valid == o.is_valid &&
      item_type == o.item_type &&
      maintenance_purchase_order_number == o.maintenance_purchase_order_number &&
      maintenance_sales_order_number == o.maintenance_sales_order_number &&
      platform_type == o.platform_type &&
      product == o.product &&
      purchase_order_number == o.purchase_order_number &&
      reseller_global_ultimate == o.reseller_global_ultimate &&
      sales_order_number == o.sales_order_number &&
      service_description == o.service_description &&
      service_end_date == o.service_end_date &&
      service_level == o.service_level &&
      service_sku == o.service_sku &&
      service_start_date == o.service_start_date &&
      state_contract == o.state_contract &&
      warranty_end_date == o.warranty_end_date &&
      warranty_type == o.warranty_type &&
      registered_device == o.registered_device &&
      source == o.source
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 556

def _deserialize(type, value)
  case type.to_sym
  when :Time
    Time.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :Boolean
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    # models (e.g. Pet) or oneOf
    klass = IntersightClient.const_get(type)
    klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



627
628
629
630
631
632
633
634
635
636
637
638
639
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 627

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 533

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  AssetDeviceContractInformationAllOf.openapi_types.each_pair do |key, type|
    if attributes[AssetDeviceContractInformationAllOf.attribute_map[key]].nil? && AssetDeviceContractInformationAllOf.openapi_nullable.include?(key)
      self.send("#{key}=", nil)
    elsif type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[AssetDeviceContractInformationAllOf.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[AssetDeviceContractInformationAllOf.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[AssetDeviceContractInformationAllOf.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[AssetDeviceContractInformationAllOf.attribute_map[key]]))
    end
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


513
514
515
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 513

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



519
520
521
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 519

def hash
  [class_id, object_type, contract, contract_status, contract_status_reason, contract_updated_time, covered_product_line_end_date, device_id, device_type, end_customer, end_user_global_ultimate, is_valid, item_type, maintenance_purchase_order_number, maintenance_sales_order_number, platform_type, product, purchase_order_number, reseller_global_ultimate, sales_order_number, service_description, service_end_date, service_level, service_sku, service_start_date, state_contract, warranty_end_date, warranty_type, registered_device, source].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



369
370
371
372
373
374
375
376
377
378
379
380
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 369

def list_invalid_properties
  invalid_properties = Array.new
  if @class_id.nil?
    invalid_properties.push('invalid value for "class_id", class_id cannot be nil.')
  end

  if @object_type.nil?
    invalid_properties.push('invalid value for "object_type", object_type cannot be nil.')
  end

  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



603
604
605
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 603

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



609
610
611
612
613
614
615
616
617
618
619
620
621
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 609

def to_hash
  hash = {}
  AssetDeviceContractInformationAllOf.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = AssetDeviceContractInformationAllOf.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



597
598
599
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 597

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
# File 'lib/intersight_client/models/asset_device_contract_information_all_of.rb', line 384

def valid?
  return false if @class_id.nil?
  class_id_validator = EnumAttributeValidator.new('String', ["asset.DeviceContractInformation"])
  return false unless class_id_validator.valid?(@class_id)
  return false if @object_type.nil?
  object_type_validator = EnumAttributeValidator.new('String', ["asset.DeviceContractInformation"])
  return false unless object_type_validator.valid?(@object_type)
  contract_status_validator = EnumAttributeValidator.new('String', ["Unknown", "Not Covered", "Active", "Expiring Soon"])
  return false unless contract_status_validator.valid?(@contract_status)
  contract_status_reason_validator = EnumAttributeValidator.new('String', ["", "Line Item Expired", "Line Item Terminated"])
  return false unless contract_status_reason_validator.valid?(@contract_status_reason)
  device_type_validator = EnumAttributeValidator.new('String', ["None", "CiscoUcsServer", "CiscoUcsFI", "CiscoUcsChassis", "CiscoNexusSwitch"])
  return false unless device_type_validator.valid?(@device_type)
  platform_type_validator = EnumAttributeValidator.new('String', ["", "APIC", "DCNM", "UCSFI", "UCSFIISM", "IMC", "IMCM4", "IMCM5", "IMCRack", "UCSIOM", "HX", "HyperFlexAP", "IWE", "UCSD", "IntersightAppliance", "IntersightAssist", "PureStorageFlashArray", "UCSC890", "NetAppOntap", "NetAppActiveIqUnifiedManager", "EmcScaleIo", "EmcVmax", "EmcVplex", "EmcXtremIo", "VmwareVcenter", "MicrosoftHyperV", "AppDynamics", "Dynatrace", "NewRelic", "ServiceNow", "ReadHatOpenStack", "CloudFoundry", "MicrosoftAzureApplicationInsights", "OpenStack", "MicrosoftSqlServer", "Kubernetes", "AmazonWebService", "AmazonWebServiceBilling", "MicrosoftAzureServicePrincipal", "MicrosoftAzureEnterpriseAgreement", "DellCompellent", "HPE3Par", "RedHatEnterpriseVirtualization", "NutanixAcropolis", "HPEOneView", "ServiceEngine", "HitachiVirtualStoragePlatform", "IMCBlade", "TerraformCloud", "TerraformAgent", "CustomTarget", "AnsibleEndpoint", "HTTPEndpoint", "SSHEndpoint", "CiscoCatalyst"])
  return false unless platform_type_validator.valid?(@platform_type)
  state_contract_validator = EnumAttributeValidator.new('String', ["Update", "OK", "Failed", "Retry"])
  return false unless state_contract_validator.valid?(@state_contract)
  true
end