Skip to content

Latest commit

 

History

History
1896 lines (1387 loc) · 122 KB

File metadata and controls

1896 lines (1387 loc) · 122 KB

IntersightClient::BiosApi

All URIs are relative to https://intersight.com

Method HTTP request Description
create_bios_policy POST /api/v1/bios/Policies Create a 'bios.Policy' resource.
delete_bios_policy DELETE /api/v1/bios/Policies/{Moid} Delete a 'bios.Policy' resource.
get_bios_boot_device_by_moid GET /api/v1/bios/BootDevices/{Moid} Read a 'bios.BootDevice' resource.
get_bios_boot_device_list GET /api/v1/bios/BootDevices Read a 'bios.BootDevice' resource.
get_bios_boot_mode_by_moid GET /api/v1/bios/BootModes/{Moid} Read a 'bios.BootMode' resource.
get_bios_boot_mode_list GET /api/v1/bios/BootModes Read a 'bios.BootMode' resource.
get_bios_policy_by_moid GET /api/v1/bios/Policies/{Moid} Read a 'bios.Policy' resource.
get_bios_policy_list GET /api/v1/bios/Policies Read a 'bios.Policy' resource.
get_bios_system_boot_order_by_moid GET /api/v1/bios/SystemBootOrders/{Moid} Read a 'bios.SystemBootOrder' resource.
get_bios_system_boot_order_list GET /api/v1/bios/SystemBootOrders Read a 'bios.SystemBootOrder' resource.
get_bios_token_settings_by_moid GET /api/v1/bios/TokenSettings/{Moid} Read a 'bios.TokenSettings' resource.
get_bios_token_settings_list GET /api/v1/bios/TokenSettings Read a 'bios.TokenSettings' resource.
get_bios_unit_by_moid GET /api/v1/bios/Units/{Moid} Read a 'bios.Unit' resource.
get_bios_unit_list GET /api/v1/bios/Units Read a 'bios.Unit' resource.
get_bios_vf_select_memory_ras_configuration_by_moid GET /api/v1/bios/VfSelectMemoryRasConfigurations/{Moid} Read a 'bios.VfSelectMemoryRasConfiguration' resource.
get_bios_vf_select_memory_ras_configuration_list GET /api/v1/bios/VfSelectMemoryRasConfigurations Read a 'bios.VfSelectMemoryRasConfiguration' resource.
patch_bios_boot_mode PATCH /api/v1/bios/BootModes/{Moid} Update a 'bios.BootMode' resource.
patch_bios_policy PATCH /api/v1/bios/Policies/{Moid} Update a 'bios.Policy' resource.
patch_bios_unit PATCH /api/v1/bios/Units/{Moid} Update a 'bios.Unit' resource.
update_bios_boot_mode POST /api/v1/bios/BootModes/{Moid} Update a 'bios.BootMode' resource.
update_bios_policy POST /api/v1/bios/Policies/{Moid} Update a 'bios.Policy' resource.
update_bios_unit POST /api/v1/bios/Units/{Moid} Update a 'bios.Unit' resource.

create_bios_policy

create_bios_policy(bios_policy, opts)

Create a 'bios.Policy' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
bios_policy = IntersightClient::BiosPolicy.new({class_id: 'bios.Policy', object_type: 'bios.Policy'}) # BiosPolicy | The 'bios.Policy' resource to create.
opts = {
  if_match: 'if_match_example', # String | For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request.
  if_none_match: 'if_none_match_example' # String | For methods that apply server-side changes, If-None-Match used with the * value can be used to create a resource not known to exist, guaranteeing that another resource creation didn't happen before, losing the data of the previous put. The request will be processed only if the eventually existing resource's ETag doesn't match any of the values listed. Otherwise, the status code 412 (Precondition Failed) is used. The asterisk is a special value representing any resource. It is only useful when creating a resource, usually with PUT, to check if another resource with the identity has already been created before. The comparison with the stored ETag uses the weak comparison algorithm, meaning two resources are considered identical if the content is equivalent - they don't have to be identical byte for byte.
}

begin
  # Create a 'bios.Policy' resource.
  result = api_instance.create_bios_policy(bios_policy, opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->create_bios_policy: #{e}"
end

Using the create_bios_policy_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> create_bios_policy_with_http_info(bios_policy, opts)

begin
  # Create a 'bios.Policy' resource.
  data, status_code, headers = api_instance.create_bios_policy_with_http_info(bios_policy, opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosPolicy>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->create_bios_policy_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
bios_policy BiosPolicy The 'bios.Policy' resource to create.
if_match String For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. [optional]
if_none_match String For methods that apply server-side changes, If-None-Match used with the * value can be used to create a resource not known to exist, guaranteeing that another resource creation didn't happen before, losing the data of the previous put. The request will be processed only if the eventually existing resource's ETag doesn't match any of the values listed. Otherwise, the status code 412 (Precondition Failed) is used. The asterisk is a special value representing any resource. It is only useful when creating a resource, usually with PUT, to check if another resource with the identity has already been created before. The comparison with the stored ETag uses the weak comparison algorithm, meaning two resources are considered identical if the content is equivalent - they don't have to be identical byte for byte. [optional]

Return type

BiosPolicy

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

delete_bios_policy

delete_bios_policy(moid)

Delete a 'bios.Policy' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.

begin
  # Delete a 'bios.Policy' resource.
  api_instance.delete_bios_policy(moid)
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->delete_bios_policy: #{e}"
end

Using the delete_bios_policy_with_http_info variant

This returns an Array which contains the response data (nil in this case), status code and headers.

<Array(nil, Integer, Hash)> delete_bios_policy_with_http_info(moid)

begin
  # Delete a 'bios.Policy' resource.
  data, status_code, headers = api_instance.delete_bios_policy_with_http_info(moid)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => nil
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->delete_bios_policy_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.

Return type

nil (empty response body)

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

get_bios_boot_device_by_moid

get_bios_boot_device_by_moid(moid)

Read a 'bios.BootDevice' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.

begin
  # Read a 'bios.BootDevice' resource.
  result = api_instance.get_bios_boot_device_by_moid(moid)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_boot_device_by_moid: #{e}"
end

Using the get_bios_boot_device_by_moid_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_boot_device_by_moid_with_http_info(moid)

begin
  # Read a 'bios.BootDevice' resource.
  data, status_code, headers = api_instance.get_bios_boot_device_by_moid_with_http_info(moid)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosBootDevice>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_boot_device_by_moid_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.

Return type

BiosBootDevice

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_boot_device_list

get_bios_boot_device_list(opts)

Read a 'bios.BootDevice' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
opts = {
  filter: '$filter=CreateTime gt 2012-08-29T21:58:33Z', # String | Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false).
  orderby: '$orderby=CreationTime', # String | Determines what properties are used to sort the collection of resources.
  top: $top=10, # Integer | Specifies the maximum number of resources to return in the response.
  skip: $skip=100, # Integer | Specifies the number of resources to skip in the response.
  select: '$select=CreateTime,ModTime', # String | Specifies a subset of properties to return.
  expand: '$expand=DisplayNames', # String | Specify additional attributes or related resources to return in addition to the primary resources.
  apply: 'apply_example', # String | Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The \"$apply\" query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are \"aggregate\" and \"groupby\". The **aggregate** transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The **groupby** transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set.
  count: false, # Boolean | The $count query specifies the service should return the count of the matching resources, instead of returning the resources.
  inlinecount: 'allpages', # String | The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.
  at: 'at=VersionType eq 'Configured'', # String | Similar to \"$filter\", but \"at\" is specifically used to filter versioning information properties for resources to return. A URI with an \"at\" Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section.
  tags: 'tags_example' # String | The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key.
}

begin
  # Read a 'bios.BootDevice' resource.
  result = api_instance.get_bios_boot_device_list(opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_boot_device_list: #{e}"
end

Using the get_bios_boot_device_list_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_boot_device_list_with_http_info(opts)

begin
  # Read a 'bios.BootDevice' resource.
  data, status_code, headers = api_instance.get_bios_boot_device_list_with_http_info(opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosBootDeviceResponse>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_boot_device_list_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
filter String Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false). [optional][default to '']
orderby String Determines what properties are used to sort the collection of resources. [optional]
top Integer Specifies the maximum number of resources to return in the response. [optional][default to 100]
skip Integer Specifies the number of resources to skip in the response. [optional][default to 0]
select String Specifies a subset of properties to return. [optional][default to '']
expand String Specify additional attributes or related resources to return in addition to the primary resources. [optional]
apply String Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The &quot;$apply&quot; query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are &quot;aggregate&quot; and &quot;groupby&quot;. The aggregate transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The groupby transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set. [optional]
count Boolean The $count query specifies the service should return the count of the matching resources, instead of returning the resources. [optional]
inlinecount String The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response. [optional][default to 'allpages']
at String Similar to &quot;$filter&quot;, but &quot;at&quot; is specifically used to filter versioning information properties for resources to return. A URI with an &quot;at&quot; Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section. [optional]
tags String The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key. [optional]

Return type

BiosBootDeviceResponse

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_boot_mode_by_moid

get_bios_boot_mode_by_moid(moid)

Read a 'bios.BootMode' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.

begin
  # Read a 'bios.BootMode' resource.
  result = api_instance.get_bios_boot_mode_by_moid(moid)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_boot_mode_by_moid: #{e}"
end

Using the get_bios_boot_mode_by_moid_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_boot_mode_by_moid_with_http_info(moid)

begin
  # Read a 'bios.BootMode' resource.
  data, status_code, headers = api_instance.get_bios_boot_mode_by_moid_with_http_info(moid)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosBootMode>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_boot_mode_by_moid_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.

Return type

BiosBootMode

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_boot_mode_list

get_bios_boot_mode_list(opts)

Read a 'bios.BootMode' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
opts = {
  filter: '$filter=CreateTime gt 2012-08-29T21:58:33Z', # String | Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false).
  orderby: '$orderby=CreationTime', # String | Determines what properties are used to sort the collection of resources.
  top: $top=10, # Integer | Specifies the maximum number of resources to return in the response.
  skip: $skip=100, # Integer | Specifies the number of resources to skip in the response.
  select: '$select=CreateTime,ModTime', # String | Specifies a subset of properties to return.
  expand: '$expand=DisplayNames', # String | Specify additional attributes or related resources to return in addition to the primary resources.
  apply: 'apply_example', # String | Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The \"$apply\" query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are \"aggregate\" and \"groupby\". The **aggregate** transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The **groupby** transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set.
  count: false, # Boolean | The $count query specifies the service should return the count of the matching resources, instead of returning the resources.
  inlinecount: 'allpages', # String | The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.
  at: 'at=VersionType eq 'Configured'', # String | Similar to \"$filter\", but \"at\" is specifically used to filter versioning information properties for resources to return. A URI with an \"at\" Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section.
  tags: 'tags_example' # String | The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key.
}

begin
  # Read a 'bios.BootMode' resource.
  result = api_instance.get_bios_boot_mode_list(opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_boot_mode_list: #{e}"
end

Using the get_bios_boot_mode_list_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_boot_mode_list_with_http_info(opts)

begin
  # Read a 'bios.BootMode' resource.
  data, status_code, headers = api_instance.get_bios_boot_mode_list_with_http_info(opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosBootModeResponse>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_boot_mode_list_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
filter String Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false). [optional][default to '']
orderby String Determines what properties are used to sort the collection of resources. [optional]
top Integer Specifies the maximum number of resources to return in the response. [optional][default to 100]
skip Integer Specifies the number of resources to skip in the response. [optional][default to 0]
select String Specifies a subset of properties to return. [optional][default to '']
expand String Specify additional attributes or related resources to return in addition to the primary resources. [optional]
apply String Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The &quot;$apply&quot; query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are &quot;aggregate&quot; and &quot;groupby&quot;. The aggregate transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The groupby transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set. [optional]
count Boolean The $count query specifies the service should return the count of the matching resources, instead of returning the resources. [optional]
inlinecount String The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response. [optional][default to 'allpages']
at String Similar to &quot;$filter&quot;, but &quot;at&quot; is specifically used to filter versioning information properties for resources to return. A URI with an &quot;at&quot; Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section. [optional]
tags String The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key. [optional]

Return type

BiosBootModeResponse

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_policy_by_moid

get_bios_policy_by_moid(moid)

Read a 'bios.Policy' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.

begin
  # Read a 'bios.Policy' resource.
  result = api_instance.get_bios_policy_by_moid(moid)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_policy_by_moid: #{e}"
end

Using the get_bios_policy_by_moid_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_policy_by_moid_with_http_info(moid)

begin
  # Read a 'bios.Policy' resource.
  data, status_code, headers = api_instance.get_bios_policy_by_moid_with_http_info(moid)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosPolicy>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_policy_by_moid_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.

Return type

BiosPolicy

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_policy_list

get_bios_policy_list(opts)

Read a 'bios.Policy' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
opts = {
  filter: '$filter=CreateTime gt 2012-08-29T21:58:33Z', # String | Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false).
  orderby: '$orderby=CreationTime', # String | Determines what properties are used to sort the collection of resources.
  top: $top=10, # Integer | Specifies the maximum number of resources to return in the response.
  skip: $skip=100, # Integer | Specifies the number of resources to skip in the response.
  select: '$select=CreateTime,ModTime', # String | Specifies a subset of properties to return.
  expand: '$expand=DisplayNames', # String | Specify additional attributes or related resources to return in addition to the primary resources.
  apply: 'apply_example', # String | Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The \"$apply\" query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are \"aggregate\" and \"groupby\". The **aggregate** transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The **groupby** transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set.
  count: false, # Boolean | The $count query specifies the service should return the count of the matching resources, instead of returning the resources.
  inlinecount: 'allpages', # String | The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.
  at: 'at=VersionType eq 'Configured'', # String | Similar to \"$filter\", but \"at\" is specifically used to filter versioning information properties for resources to return. A URI with an \"at\" Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section.
  tags: 'tags_example' # String | The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key.
}

begin
  # Read a 'bios.Policy' resource.
  result = api_instance.get_bios_policy_list(opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_policy_list: #{e}"
end

Using the get_bios_policy_list_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_policy_list_with_http_info(opts)

begin
  # Read a 'bios.Policy' resource.
  data, status_code, headers = api_instance.get_bios_policy_list_with_http_info(opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosPolicyResponse>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_policy_list_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
filter String Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false). [optional][default to '']
orderby String Determines what properties are used to sort the collection of resources. [optional]
top Integer Specifies the maximum number of resources to return in the response. [optional][default to 100]
skip Integer Specifies the number of resources to skip in the response. [optional][default to 0]
select String Specifies a subset of properties to return. [optional][default to '']
expand String Specify additional attributes or related resources to return in addition to the primary resources. [optional]
apply String Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The &quot;$apply&quot; query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are &quot;aggregate&quot; and &quot;groupby&quot;. The aggregate transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The groupby transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set. [optional]
count Boolean The $count query specifies the service should return the count of the matching resources, instead of returning the resources. [optional]
inlinecount String The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response. [optional][default to 'allpages']
at String Similar to &quot;$filter&quot;, but &quot;at&quot; is specifically used to filter versioning information properties for resources to return. A URI with an &quot;at&quot; Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section. [optional]
tags String The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key. [optional]

Return type

BiosPolicyResponse

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_system_boot_order_by_moid

get_bios_system_boot_order_by_moid(moid)

Read a 'bios.SystemBootOrder' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.

begin
  # Read a 'bios.SystemBootOrder' resource.
  result = api_instance.get_bios_system_boot_order_by_moid(moid)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_system_boot_order_by_moid: #{e}"
end

Using the get_bios_system_boot_order_by_moid_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_system_boot_order_by_moid_with_http_info(moid)

begin
  # Read a 'bios.SystemBootOrder' resource.
  data, status_code, headers = api_instance.get_bios_system_boot_order_by_moid_with_http_info(moid)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosSystemBootOrder>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_system_boot_order_by_moid_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.

Return type

BiosSystemBootOrder

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_system_boot_order_list

get_bios_system_boot_order_list(opts)

Read a 'bios.SystemBootOrder' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
opts = {
  filter: '$filter=CreateTime gt 2012-08-29T21:58:33Z', # String | Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false).
  orderby: '$orderby=CreationTime', # String | Determines what properties are used to sort the collection of resources.
  top: $top=10, # Integer | Specifies the maximum number of resources to return in the response.
  skip: $skip=100, # Integer | Specifies the number of resources to skip in the response.
  select: '$select=CreateTime,ModTime', # String | Specifies a subset of properties to return.
  expand: '$expand=DisplayNames', # String | Specify additional attributes or related resources to return in addition to the primary resources.
  apply: 'apply_example', # String | Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The \"$apply\" query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are \"aggregate\" and \"groupby\". The **aggregate** transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The **groupby** transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set.
  count: false, # Boolean | The $count query specifies the service should return the count of the matching resources, instead of returning the resources.
  inlinecount: 'allpages', # String | The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.
  at: 'at=VersionType eq 'Configured'', # String | Similar to \"$filter\", but \"at\" is specifically used to filter versioning information properties for resources to return. A URI with an \"at\" Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section.
  tags: 'tags_example' # String | The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key.
}

begin
  # Read a 'bios.SystemBootOrder' resource.
  result = api_instance.get_bios_system_boot_order_list(opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_system_boot_order_list: #{e}"
end

Using the get_bios_system_boot_order_list_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_system_boot_order_list_with_http_info(opts)

begin
  # Read a 'bios.SystemBootOrder' resource.
  data, status_code, headers = api_instance.get_bios_system_boot_order_list_with_http_info(opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosSystemBootOrderResponse>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_system_boot_order_list_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
filter String Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false). [optional][default to '']
orderby String Determines what properties are used to sort the collection of resources. [optional]
top Integer Specifies the maximum number of resources to return in the response. [optional][default to 100]
skip Integer Specifies the number of resources to skip in the response. [optional][default to 0]
select String Specifies a subset of properties to return. [optional][default to '']
expand String Specify additional attributes or related resources to return in addition to the primary resources. [optional]
apply String Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The &quot;$apply&quot; query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are &quot;aggregate&quot; and &quot;groupby&quot;. The aggregate transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The groupby transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set. [optional]
count Boolean The $count query specifies the service should return the count of the matching resources, instead of returning the resources. [optional]
inlinecount String The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response. [optional][default to 'allpages']
at String Similar to &quot;$filter&quot;, but &quot;at&quot; is specifically used to filter versioning information properties for resources to return. A URI with an &quot;at&quot; Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section. [optional]
tags String The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key. [optional]

Return type

BiosSystemBootOrderResponse

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_token_settings_by_moid

get_bios_token_settings_by_moid(moid)

Read a 'bios.TokenSettings' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.

begin
  # Read a 'bios.TokenSettings' resource.
  result = api_instance.get_bios_token_settings_by_moid(moid)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_token_settings_by_moid: #{e}"
end

Using the get_bios_token_settings_by_moid_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_token_settings_by_moid_with_http_info(moid)

begin
  # Read a 'bios.TokenSettings' resource.
  data, status_code, headers = api_instance.get_bios_token_settings_by_moid_with_http_info(moid)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosTokenSettings>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_token_settings_by_moid_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.

Return type

BiosTokenSettings

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_token_settings_list

get_bios_token_settings_list(opts)

Read a 'bios.TokenSettings' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
opts = {
  filter: '$filter=CreateTime gt 2012-08-29T21:58:33Z', # String | Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false).
  orderby: '$orderby=CreationTime', # String | Determines what properties are used to sort the collection of resources.
  top: $top=10, # Integer | Specifies the maximum number of resources to return in the response.
  skip: $skip=100, # Integer | Specifies the number of resources to skip in the response.
  select: '$select=CreateTime,ModTime', # String | Specifies a subset of properties to return.
  expand: '$expand=DisplayNames', # String | Specify additional attributes or related resources to return in addition to the primary resources.
  apply: 'apply_example', # String | Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The \"$apply\" query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are \"aggregate\" and \"groupby\". The **aggregate** transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The **groupby** transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set.
  count: false, # Boolean | The $count query specifies the service should return the count of the matching resources, instead of returning the resources.
  inlinecount: 'allpages', # String | The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.
  at: 'at=VersionType eq 'Configured'', # String | Similar to \"$filter\", but \"at\" is specifically used to filter versioning information properties for resources to return. A URI with an \"at\" Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section.
  tags: 'tags_example' # String | The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key.
}

begin
  # Read a 'bios.TokenSettings' resource.
  result = api_instance.get_bios_token_settings_list(opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_token_settings_list: #{e}"
end

Using the get_bios_token_settings_list_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_token_settings_list_with_http_info(opts)

begin
  # Read a 'bios.TokenSettings' resource.
  data, status_code, headers = api_instance.get_bios_token_settings_list_with_http_info(opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosTokenSettingsResponse>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_token_settings_list_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
filter String Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false). [optional][default to '']
orderby String Determines what properties are used to sort the collection of resources. [optional]
top Integer Specifies the maximum number of resources to return in the response. [optional][default to 100]
skip Integer Specifies the number of resources to skip in the response. [optional][default to 0]
select String Specifies a subset of properties to return. [optional][default to '']
expand String Specify additional attributes or related resources to return in addition to the primary resources. [optional]
apply String Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The &quot;$apply&quot; query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are &quot;aggregate&quot; and &quot;groupby&quot;. The aggregate transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The groupby transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set. [optional]
count Boolean The $count query specifies the service should return the count of the matching resources, instead of returning the resources. [optional]
inlinecount String The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response. [optional][default to 'allpages']
at String Similar to &quot;$filter&quot;, but &quot;at&quot; is specifically used to filter versioning information properties for resources to return. A URI with an &quot;at&quot; Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section. [optional]
tags String The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key. [optional]

Return type

BiosTokenSettingsResponse

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_unit_by_moid

get_bios_unit_by_moid(moid)

Read a 'bios.Unit' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.

begin
  # Read a 'bios.Unit' resource.
  result = api_instance.get_bios_unit_by_moid(moid)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_unit_by_moid: #{e}"
end

Using the get_bios_unit_by_moid_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_unit_by_moid_with_http_info(moid)

begin
  # Read a 'bios.Unit' resource.
  data, status_code, headers = api_instance.get_bios_unit_by_moid_with_http_info(moid)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosUnit>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_unit_by_moid_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.

Return type

BiosUnit

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_unit_list

get_bios_unit_list(opts)

Read a 'bios.Unit' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
opts = {
  filter: '$filter=CreateTime gt 2012-08-29T21:58:33Z', # String | Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false).
  orderby: '$orderby=CreationTime', # String | Determines what properties are used to sort the collection of resources.
  top: $top=10, # Integer | Specifies the maximum number of resources to return in the response.
  skip: $skip=100, # Integer | Specifies the number of resources to skip in the response.
  select: '$select=CreateTime,ModTime', # String | Specifies a subset of properties to return.
  expand: '$expand=DisplayNames', # String | Specify additional attributes or related resources to return in addition to the primary resources.
  apply: 'apply_example', # String | Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The \"$apply\" query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are \"aggregate\" and \"groupby\". The **aggregate** transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The **groupby** transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set.
  count: false, # Boolean | The $count query specifies the service should return the count of the matching resources, instead of returning the resources.
  inlinecount: 'allpages', # String | The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.
  at: 'at=VersionType eq 'Configured'', # String | Similar to \"$filter\", but \"at\" is specifically used to filter versioning information properties for resources to return. A URI with an \"at\" Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section.
  tags: 'tags_example' # String | The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key.
}

begin
  # Read a 'bios.Unit' resource.
  result = api_instance.get_bios_unit_list(opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_unit_list: #{e}"
end

Using the get_bios_unit_list_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_unit_list_with_http_info(opts)

begin
  # Read a 'bios.Unit' resource.
  data, status_code, headers = api_instance.get_bios_unit_list_with_http_info(opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosUnitResponse>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_unit_list_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
filter String Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false). [optional][default to '']
orderby String Determines what properties are used to sort the collection of resources. [optional]
top Integer Specifies the maximum number of resources to return in the response. [optional][default to 100]
skip Integer Specifies the number of resources to skip in the response. [optional][default to 0]
select String Specifies a subset of properties to return. [optional][default to '']
expand String Specify additional attributes or related resources to return in addition to the primary resources. [optional]
apply String Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The &quot;$apply&quot; query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are &quot;aggregate&quot; and &quot;groupby&quot;. The aggregate transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The groupby transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set. [optional]
count Boolean The $count query specifies the service should return the count of the matching resources, instead of returning the resources. [optional]
inlinecount String The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response. [optional][default to 'allpages']
at String Similar to &quot;$filter&quot;, but &quot;at&quot; is specifically used to filter versioning information properties for resources to return. A URI with an &quot;at&quot; Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section. [optional]
tags String The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key. [optional]

Return type

BiosUnitResponse

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_vf_select_memory_ras_configuration_by_moid

get_bios_vf_select_memory_ras_configuration_by_moid(moid)

Read a 'bios.VfSelectMemoryRasConfiguration' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.

begin
  # Read a 'bios.VfSelectMemoryRasConfiguration' resource.
  result = api_instance.get_bios_vf_select_memory_ras_configuration_by_moid(moid)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_vf_select_memory_ras_configuration_by_moid: #{e}"
end

Using the get_bios_vf_select_memory_ras_configuration_by_moid_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_vf_select_memory_ras_configuration_by_moid_with_http_info(moid)

begin
  # Read a 'bios.VfSelectMemoryRasConfiguration' resource.
  data, status_code, headers = api_instance.get_bios_vf_select_memory_ras_configuration_by_moid_with_http_info(moid)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosVfSelectMemoryRasConfiguration>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_vf_select_memory_ras_configuration_by_moid_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.

Return type

BiosVfSelectMemoryRasConfiguration

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

get_bios_vf_select_memory_ras_configuration_list

get_bios_vf_select_memory_ras_configuration_list(opts)

Read a 'bios.VfSelectMemoryRasConfiguration' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
opts = {
  filter: '$filter=CreateTime gt 2012-08-29T21:58:33Z', # String | Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false).
  orderby: '$orderby=CreationTime', # String | Determines what properties are used to sort the collection of resources.
  top: $top=10, # Integer | Specifies the maximum number of resources to return in the response.
  skip: $skip=100, # Integer | Specifies the number of resources to skip in the response.
  select: '$select=CreateTime,ModTime', # String | Specifies a subset of properties to return.
  expand: '$expand=DisplayNames', # String | Specify additional attributes or related resources to return in addition to the primary resources.
  apply: 'apply_example', # String | Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The \"$apply\" query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are \"aggregate\" and \"groupby\". The **aggregate** transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The **groupby** transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set.
  count: false, # Boolean | The $count query specifies the service should return the count of the matching resources, instead of returning the resources.
  inlinecount: 'allpages', # String | The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.
  at: 'at=VersionType eq 'Configured'', # String | Similar to \"$filter\", but \"at\" is specifically used to filter versioning information properties for resources to return. A URI with an \"at\" Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section.
  tags: 'tags_example' # String | The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key.
}

begin
  # Read a 'bios.VfSelectMemoryRasConfiguration' resource.
  result = api_instance.get_bios_vf_select_memory_ras_configuration_list(opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_vf_select_memory_ras_configuration_list: #{e}"
end

Using the get_bios_vf_select_memory_ras_configuration_list_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_bios_vf_select_memory_ras_configuration_list_with_http_info(opts)

begin
  # Read a 'bios.VfSelectMemoryRasConfiguration' resource.
  data, status_code, headers = api_instance.get_bios_vf_select_memory_ras_configuration_list_with_http_info(opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosVfSelectMemoryRasConfigurationResponse>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->get_bios_vf_select_memory_ras_configuration_list_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
filter String Filter criteria for the resources to return. A URI with a $filter query option identifies a subset of the entries from the Collection of Entries. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the $filter option. The expression language that is used in $filter queries supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false). [optional][default to '']
orderby String Determines what properties are used to sort the collection of resources. [optional]
top Integer Specifies the maximum number of resources to return in the response. [optional][default to 100]
skip Integer Specifies the number of resources to skip in the response. [optional][default to 0]
select String Specifies a subset of properties to return. [optional][default to '']
expand String Specify additional attributes or related resources to return in addition to the primary resources. [optional]
apply String Specify one or more transformation operations to perform aggregation on the resources. The transformations are processed in order with the output from a transformation being used as input for the subsequent transformation. The &quot;$apply&quot; query takes a sequence of set transformations, separated by forward slashes to express that they are consecutively applied, i.e. the result of each transformation is the input to the next transformation. Supported aggregation methods are &quot;aggregate&quot; and &quot;groupby&quot;. The aggregate transformation takes a comma-separated list of one or more aggregate expressions as parameters and returns a result set with a single instance, representing the aggregated value for all instances in the input set. The groupby transformation takes one or two parameters and 1. Splits the initial set into subsets where all instances in a subset have the same values for the grouping properties specified in the first parameter, 2. Applies set transformations to each subset according to the second parameter, resulting in a new set of potentially different structure and cardinality, 3. Ensures that the instances in the result set contain all grouping properties with the correct values for the group, 4. Concatenates the intermediate result sets into one result set. A groupby transformation affects the structure of the result set. [optional]
count Boolean The $count query specifies the service should return the count of the matching resources, instead of returning the resources. [optional]
inlinecount String The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response. [optional][default to 'allpages']
at String Similar to &quot;$filter&quot;, but &quot;at&quot; is specifically used to filter versioning information properties for resources to return. A URI with an &quot;at&quot; Query Option identifies a subset of the Entries from the Collection of Entries identified by the Resource Path section of the URI. The subset is determined by selecting only the Entries that satisfy the predicate expression specified by the query option. The expression language that is used in at operators supports references to properties and literals. The literal values can be strings enclosed in single quotes, numbers and boolean values (true or false) or any of the additional literal representations shown in the Abstract Type System section. [optional]
tags String The 'tags' parameter is used to request a summary of the Tag utilization for this resource. When the 'tags' parameter is specified, the response provides a list of tag keys, the number of times the key has been used across all documents, and the tag values that have been assigned to the tag key. [optional]

Return type

BiosVfSelectMemoryRasConfigurationResponse

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

patch_bios_boot_mode

patch_bios_boot_mode(moid, bios_boot_mode, opts)

Update a 'bios.BootMode' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.
bios_boot_mode = IntersightClient::BiosBootMode.new({class_id: 'bios.BootMode', object_type: 'bios.BootMode'}) # BiosBootMode | The 'bios.BootMode' resource to update.
opts = {
  if_match: 'if_match_example' # String | For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request.
}

begin
  # Update a 'bios.BootMode' resource.
  result = api_instance.patch_bios_boot_mode(moid, bios_boot_mode, opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->patch_bios_boot_mode: #{e}"
end

Using the patch_bios_boot_mode_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> patch_bios_boot_mode_with_http_info(moid, bios_boot_mode, opts)

begin
  # Update a 'bios.BootMode' resource.
  data, status_code, headers = api_instance.patch_bios_boot_mode_with_http_info(moid, bios_boot_mode, opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosBootMode>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->patch_bios_boot_mode_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.
bios_boot_mode BiosBootMode The 'bios.BootMode' resource to update.
if_match String For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. [optional]

Return type

BiosBootMode

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: application/json, application/json-patch+json
  • Accept: application/json

patch_bios_policy

patch_bios_policy(moid, bios_policy, opts)

Update a 'bios.Policy' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.
bios_policy = IntersightClient::BiosPolicy.new({class_id: 'bios.Policy', object_type: 'bios.Policy'}) # BiosPolicy | The 'bios.Policy' resource to update.
opts = {
  if_match: 'if_match_example' # String | For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request.
}

begin
  # Update a 'bios.Policy' resource.
  result = api_instance.patch_bios_policy(moid, bios_policy, opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->patch_bios_policy: #{e}"
end

Using the patch_bios_policy_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> patch_bios_policy_with_http_info(moid, bios_policy, opts)

begin
  # Update a 'bios.Policy' resource.
  data, status_code, headers = api_instance.patch_bios_policy_with_http_info(moid, bios_policy, opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosPolicy>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->patch_bios_policy_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.
bios_policy BiosPolicy The 'bios.Policy' resource to update.
if_match String For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. [optional]

Return type

BiosPolicy

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: application/json, application/json-patch+json
  • Accept: application/json

patch_bios_unit

patch_bios_unit(moid, bios_unit, opts)

Update a 'bios.Unit' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.
bios_unit = IntersightClient::BiosUnit.new({class_id: 'bios.Unit', object_type: 'bios.Unit'}) # BiosUnit | The 'bios.Unit' resource to update.
opts = {
  if_match: 'if_match_example' # String | For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request.
}

begin
  # Update a 'bios.Unit' resource.
  result = api_instance.patch_bios_unit(moid, bios_unit, opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->patch_bios_unit: #{e}"
end

Using the patch_bios_unit_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> patch_bios_unit_with_http_info(moid, bios_unit, opts)

begin
  # Update a 'bios.Unit' resource.
  data, status_code, headers = api_instance.patch_bios_unit_with_http_info(moid, bios_unit, opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosUnit>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->patch_bios_unit_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.
bios_unit BiosUnit The 'bios.Unit' resource to update.
if_match String For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. [optional]

Return type

BiosUnit

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: application/json, application/json-patch+json
  • Accept: application/json

update_bios_boot_mode

update_bios_boot_mode(moid, bios_boot_mode, opts)

Update a 'bios.BootMode' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.
bios_boot_mode = IntersightClient::BiosBootMode.new({class_id: 'bios.BootMode', object_type: 'bios.BootMode'}) # BiosBootMode | The 'bios.BootMode' resource to update.
opts = {
  if_match: 'if_match_example' # String | For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request.
}

begin
  # Update a 'bios.BootMode' resource.
  result = api_instance.update_bios_boot_mode(moid, bios_boot_mode, opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->update_bios_boot_mode: #{e}"
end

Using the update_bios_boot_mode_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> update_bios_boot_mode_with_http_info(moid, bios_boot_mode, opts)

begin
  # Update a 'bios.BootMode' resource.
  data, status_code, headers = api_instance.update_bios_boot_mode_with_http_info(moid, bios_boot_mode, opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosBootMode>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->update_bios_boot_mode_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.
bios_boot_mode BiosBootMode The 'bios.BootMode' resource to update.
if_match String For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. [optional]

Return type

BiosBootMode

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: application/json, application/json-patch+json
  • Accept: application/json

update_bios_policy

update_bios_policy(moid, bios_policy, opts)

Update a 'bios.Policy' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.
bios_policy = IntersightClient::BiosPolicy.new({class_id: 'bios.Policy', object_type: 'bios.Policy'}) # BiosPolicy | The 'bios.Policy' resource to update.
opts = {
  if_match: 'if_match_example' # String | For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request.
}

begin
  # Update a 'bios.Policy' resource.
  result = api_instance.update_bios_policy(moid, bios_policy, opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->update_bios_policy: #{e}"
end

Using the update_bios_policy_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> update_bios_policy_with_http_info(moid, bios_policy, opts)

begin
  # Update a 'bios.Policy' resource.
  data, status_code, headers = api_instance.update_bios_policy_with_http_info(moid, bios_policy, opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosPolicy>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->update_bios_policy_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.
bios_policy BiosPolicy The 'bios.Policy' resource to update.
if_match String For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. [optional]

Return type

BiosPolicy

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: application/json, application/json-patch+json
  • Accept: application/json

update_bios_unit

update_bios_unit(moid, bios_unit, opts)

Update a 'bios.Unit' resource.

Examples

require 'time'
require 'intersight_client'
# setup authorization
IntersightClient.configure do |config|
  # Configure API key authorization: cookieAuth
  config.api_key['cookieAuth'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['cookieAuth'] = 'Bearer'


  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'

  # Configure OAuth2 access token for authorization: oAuth2
  config.access_token = 'YOUR ACCESS TOKEN'
end

api_instance = IntersightClient::BiosApi.new
moid = 'moid_example' # String | The unique Moid identifier of a resource instance.
bios_unit = IntersightClient::BiosUnit.new({class_id: 'bios.Unit', object_type: 'bios.Unit'}) # BiosUnit | The 'bios.Unit' resource to update.
opts = {
  if_match: 'if_match_example' # String | For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request.
}

begin
  # Update a 'bios.Unit' resource.
  result = api_instance.update_bios_unit(moid, bios_unit, opts)
  p result
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->update_bios_unit: #{e}"
end

Using the update_bios_unit_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> update_bios_unit_with_http_info(moid, bios_unit, opts)

begin
  # Update a 'bios.Unit' resource.
  data, status_code, headers = api_instance.update_bios_unit_with_http_info(moid, bios_unit, opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <BiosUnit>
rescue IntersightClient::ApiError => e
  puts "Error when calling BiosApi->update_bios_unit_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
moid String The unique Moid identifier of a resource instance.
bios_unit BiosUnit The 'bios.Unit' resource to update.
if_match String For methods that apply server-side changes, and in particular for PUT, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned. When modifying a resource using POST or PUT, the If-Match header must be set to the value of the resource ModTime property after which no lost update problem should occur. For example, a client send a GET request to obtain a resource, which includes the ModTime property. The ModTime indicates the last time the resource was created or modified. The client then sends a POST or PUT request with the If-Match header set to the ModTime property of the resource as obtained in the GET request. [optional]

Return type

BiosUnit

Authorization

cookieAuth, http_signature, oAuth2, oAuth2

HTTP request headers

  • Content-Type: application/json, application/json-patch+json
  • Accept: application/json