Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.39 KB

File metadata and controls

24 lines (18 loc) · 1.39 KB

IntersightClient::BulkSubRequest

Properties

Name Type Description Notes
class_id String 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. The enum values provides the list of concrete types that can be instantiated from this abstract type. [default to 'bulk.RestSubRequest']
object_type String The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. The enum values provides the list of concrete types that can be instantiated from this abstract type. [default to 'bulk.RestSubRequest']
uri String The URI on which this action is to be performed. [optional]
verb String The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). The value is used to override the top level verb. * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource. [optional][default to 'POST']

Example

require 'intersight_client'

instance = IntersightClient::BulkSubRequest.new(
  class_id: null,
  object_type: null,
  uri: null,
  verb: null
)